:root {
  --grass-green: #1E7A3E;
  --deep-green: #14532D;
  --wc-blue: #0D2A52;
  --night-black: #050505;
  --white: #FFFFFF;
  --frame-gray: #8B949E;
  --soft-gray: #D1D5DB;
  --text-dark: #101828;
  --font-primary: 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--night-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--wc-blue);
  transition: var(--transition);
}

.reading-content {
  max-width: 800px;
  margin: 0 auto;
}

.reading-content p {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--deep-green);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  color: var(--grass-green);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--grass-green);
}

.nav-cta {
  background: var(--grass-green);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: bold;
}

.nav-cta:hover {
  background: var(--deep-green);
  color: var(--white);
}

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

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(to bottom, rgba(13, 42, 82, 0.6), rgba(5, 5, 5, 0.9)), url('images/world-cup-2026-stadium-hero-atmosphere.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  color: var(--white);
  margin-top: 0;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  color: var(--soft-gray);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

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

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

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--night-black);
}

/* Sections */
section {
  padding: 5rem 2rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--wc-blue);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--grass-green);
  margin: 1rem auto 0;
}

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

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

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--soft-gray);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  border-color: var(--grass-green);
}

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

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.25rem;
  color: var(--wc-blue);
  margin-bottom: 0.5rem;
}

.card-content .badge {
  display: inline-block;
  background: var(--deep-green);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.card-content ul {
  list-style: none;
  margin-top: 1rem;
}

.card-content ul li {
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--soft-gray);
  display: flex;
  justify-content: space-between;
}

.card-content ul li:last-child {
  border-bottom: none;
}

.card-content ul li span:first-child {
  font-weight: bold;
  color: var(--frame-gray);
}

/* Matchup Specific */
.matchup-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 4px;
}

.matchup-teams h4 {
  margin: 0;
  font-size: 1.1rem;
}

.vs {
  font-weight: bold;
  color: var(--grass-green);
}

/* Dark Section */
.bg-dark {
  background: var(--night-black);
  color: var(--white);
  position: relative;
}

.bg-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/world-cup-2026-football-pitch-texture.jpg') center/cover;
  opacity: 0.1;
  pointer-events: none;
}

.bg-dark .section-title {
  color: var(--white);
}

.bg-dark .card {
  background: rgba(255,255,255,0.05);
  border-color: var(--frame-gray);
  color: var(--white);
}

.bg-dark .card h3 {
  color: var(--white);
}

.bg-dark .card-content ul li {
  border-color: rgba(255,255,255,0.1);
}

.bg-dark .card-content ul li span:first-child {
  color: var(--soft-gray);
}

/* Guide Section */
.guide-content {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--wc-blue);
}

.guide-step {
  margin-bottom: 2rem;
}

.guide-step h3 {
  color: var(--grass-green);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.accordion-item {
  border: 1px solid var(--soft-gray);
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  background: var(--white);
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--wc-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover {
  background: #f8f9fa;
}

.accordion-header.active {
  background: var(--wc-blue);
  color: var(--white);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--white);
}

.accordion-content p {
  padding: 1.5rem;
  margin: 0;
}

/* Contact Form Redesign */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.contact-info p {
  color: var(--soft-gray);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.method-icon {
  font-size: 1.2rem;
  background: var(--grass-green);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(30, 122, 62, 0.4);
}

.method-text {
  display: flex;
  flex-direction: column;
}

.method-text strong {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.method-text span {
  color: var(--soft-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border-top: 4px solid var(--grass-green);
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
}

.half-width {
  flex: 1;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--wc-blue);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--soft-gray);
  border-radius: 4px;
  font-family: var(--font-primary);
  background: #f8f9fa;
  color: var(--text-dark);
  transition: var(--transition);
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #adb5bd;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--grass-green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 122, 62, 0.1);
}

.contact-btn {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-top: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background-color: var(--grass-green);
  color: var(--white);
  transition: var(--transition);
}

.contact-btn:hover {
  background-color: var(--deep-green);
}

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

.status-loading { 
  background: rgba(13, 42, 82, 0.05);
  color: var(--wc-blue); 
}
.status-success { 
  background: rgba(30, 122, 62, 0.05);
  color: var(--grass-green); 
}
.status-error { 
  background: rgba(220, 53, 69, 0.05);
  color: #dc3545; 
}

/* Legal Pages */
.legal-page {
  padding-top: 8rem;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.legal-header h1 {
  font-size: 2.5rem;
  color: var(--wc-blue);
}

.legal-header p {
  color: var(--frame-gray);
  font-weight: bold;
}

.legal-content h2 {
  margin-top: 2.5rem;
  color: var(--grass-green);
  border-bottom: 1px solid var(--soft-gray);
  padding-bottom: 0.5rem;
}

.address-block {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 2rem;
  font-style: normal;
  border-left: 4px solid var(--frame-gray);
}

/* Footer */
footer {
  background: linear-gradient(to bottom, var(--wc-blue), var(--night-black));
  border-top: 2px solid var(--grass-green);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

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

.footer-col p {
  color: var(--soft-gray);
  font-size: 0.9rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--soft-gray);
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--grass-green);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: var(--frame-gray);
  font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--night-black);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--grass-green);
  max-width: 350px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 9999;
  display: none;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.85rem;
}

.cookie-accept {
  background: var(--grass-green);
  color: var(--white);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--frame-gray);
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--night-black);
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
    display: none;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  nav ul li a {
    display: block;
    padding: 1rem;
  }
  
  .nav-cta {
    margin: 1rem;
    display: inline-block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-wrapper {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cookie-banner {
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }
}