:root {
  --primary-green: #0E7A3D;
  --dark-green: #09592D;
  --primary-red: #C62828;
  --dark-blue: #0A2240;
  --royal-blue: #1565C0;
  --charcoal: #111827;
  --steel: #374151;
  --light-gray: #E5E7EB;
  --white: #FFFFFF;
  --transition-speed: 250ms;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark-blue);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

.bg-light {
  background-color: var(--light-gray);
}

.bg-dark {
  background-color: var(--dark-blue);
  color: var(--white);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--steel);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.bg-dark .section-subtitle {
  color: var(--light-gray);
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--dark-green);
}

.btn-secondary {
  background-color: var(--primary-red);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #a02020;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--dark-blue);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background-color: var(--dark-blue);
  color: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  text-transform: lowercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary-green);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--charcoal);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--light-gray);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* Cards Common */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Featured Matches */
.match-card .match-stage {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary-red);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.match-card .match-teams {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.match-card .match-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.match-card .match-summary {
  font-size: 0.95rem;
  color: var(--steel);
  margin-bottom: 1.5rem;
  flex: 1;
}

.match-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Latest Reports */
.report-card .report-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.report-card .report-score {
  display: inline-block;
  background: var(--light-gray);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.report-card .report-excerpt {
  color: var(--steel);
  font-size: 0.95rem;
}

/* Analysis */
.analysis-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.analysis-item {
  display: flex;
  gap: 2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.analysis-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.analysis-item p {
  color: var(--steel);
}

/* Stats */
.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--light-gray);
}

/* Newsletter */
.newsletter-section {
  background-color: var(--royal-blue);
  color: var(--white);
  text-align: center;
}

.newsletter-form {
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.newsletter-form button {
  border-radius: 4px;
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) ease;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--steel);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Contact */
.contact-wrapper {
  display: flex;
  gap: 4rem;
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--steel);
  margin-bottom: 1rem;
}

.contact-form {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-blue);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-status {
  display: none;
  padding: 1rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
}

.form-status.loading { display: block; background: var(--light-gray); color: var(--steel); }
.form-status.success { display: block; background: #d1fae5; color: #065f46; }
.form-status.error { display: block; background: #fee2e2; color: #991b1b; }

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 4rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  color: var(--steel);
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--steel);
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style: disc;
  color: var(--steel);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background-color: var(--dark-blue);
  color: var(--white);
  position: relative;
}

.footer-top {
  padding: 5rem 0;
  background-image: linear-gradient(rgba(10, 34, 64, 0.95), rgba(10, 34, 64, 0.95)), url('images/photo-1508344928928-7137b29de216.png');
  background-size: cover;
  background-position: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: var(--light-gray);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  background-color: var(--charcoal);
  padding: 2rem 0;
  border-top: 4px solid var(--primary-green);
  text-align: center;
}

.footer-bottom .logo {
  display: block;
  margin-bottom: 1rem;
}

.footer-bottom p {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-bottom .footer-highlight {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.footer-legal-links a {
  color: var(--light-gray);
  font-size: 0.85rem;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--charcoal);
  color: var(--white);
  padding: 1.5rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 300ms ease;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  flex: 1;
  max-width: 800px;
  margin-right: 2rem;
}

.cookie-content p {
  font-size: 0.95rem;
  color: var(--light-gray);
}

.cookie-btns {
  display: flex;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .analysis-item { flex-direction: column; gap: 1rem; }
  .contact-wrapper { flex-direction: column; gap: 2rem; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  
  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--dark-blue);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .nav-links { flex-direction: column; width: 100%; text-align: center; }
  
  .hero h1 { font-size: 2.5rem; }
  .hero-btns { flex-direction: column; }
  
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  
  .newsletter-form { flex-direction: column; }
  
  .cookie-banner { flex-direction: column; text-align: center; gap: 1rem; }
  .cookie-content { margin-right: 0; margin-bottom: 1rem; }
  .legal-content { padding: 2rem; }
}