/* RESET & GLOBAL STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-bg: #f8fafc;
  --secondary-bg: #ffffff;
  --surface-bg: #ffffff;
  --surface-alt: #f1f5f9;
  --accent-primary: #dc2626;      /* Vibrant Crimson Red */
  --accent-secondary: #be123c;    /* Deep Red Hover state */
  --accent-tertiary: #991b1b;     /* Editorial Dark Red */
  --accent-alert: #ef4444;
  --border-color: rgba(15, 23, 42, 0.08);
  --text-primary: #0f172a;        /* Deep Premium Slate */
  --text-secondary: #334155;      /* Slate Secondary */
  --muted-label: #64748b;         /* Muted Slate Gray */
  --neon-glow: 0 0 15px rgba(220, 38, 38, 0.15);
  --font-heading: 'Orbitron', sans-serif;
  --font-subheading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-speed: 0.3s;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--primary-bg);
  color: var(--text-primary);
}

body {
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* TYPOGRAPHY COMPONENTS */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* BUTTONS & ACTIONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-subheading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #ffffff;
  border: 2px solid var(--accent-primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-primary);
  box-shadow: var(--neon-glow);
}

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

.btn-secondary:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
}

.btn-outline:hover {
  background: var(--accent-primary);
  color: #ffffff;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
  padding: 0.75rem;
}

/* LIVE NEON MATCH TICKER */
.ticker-wrap {
  background: var(--accent-primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 1000;
}

.ticker-title {
  background: #000000;
  color: #ffffff;
  font-family: var(--font-subheading);
  font-weight: 700;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  z-index: 2;
  white-space: nowrap;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: scrollTicker 45s linear infinite;
  z-index: 1;
  align-items: center;
}

.ticker-item {
  display: inline-block;
  padding: 0 2rem;
  color: #ffffff;
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@keyframes scrollTicker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* HEADER SECTION */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition-speed);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.logo-icon {
  color: var(--accent-primary);
  text-shadow: var(--neon-glow);
}

.highlight {
  color: var(--accent-primary);
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color var(--transition-speed);
}

.nav-link:hover {
  color: var(--accent-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 50% 30%, var(--surface-alt) 0%, var(--primary-bg) 70%);
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
}

.hero-stadium-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.glow-text {
  color: transparent;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Hero Statistics Widget */
.hero-stats-widget {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-primary);
}

.stat-lbl {
  font-size: 0.8rem;
  color: var(--muted-label);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* SECTION GLOBAL SETTINGS */
.section-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 5.25rem 2rem;
}

.section-header {
  margin-bottom: 3.5rem;
}

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

.section-tag {
  color: var(--accent-primary);
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0.5rem 0 0 0;
}

.section-header.text-center .section-desc {
  margin: 0.5rem auto 0 auto;
}

/* TITLE RACE FAVS STRIP */
.title-race-section {
  background-color: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.title-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.title-card {
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.title-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
}

.card-rank {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.1);
}

.card-flag-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.country-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.group-badge {
  background: var(--surface-alt);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.card-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric {
  display: flex;
  flex-direction: column;
}

.met-label {
  font-size: 0.75rem;
  color: var(--muted-label);
  text-transform: uppercase;
}

.met-val {
  font-family: var(--font-subheading);
  font-size: 1.2rem;
  font-weight: 700;
}

.card-progress-bar {
  background: rgba(15, 23, 42, 0.05);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  background: var(--accent-primary);
  height: 100%;
  border-radius: 3px;
}

/* MATCHUPS GRID SECTION */
.matchups-grid-section {
  background-color: var(--primary-bg);
}

.matchups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.matchup-card {
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed);
}

.matchup-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.matchup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.matchup-group {
  font-family: var(--font-subheading);
  font-weight: 700;
  color: var(--accent-primary);
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
}

.match-badge {
  font-size: 0.7rem;
  background: var(--accent-primary);
  color: #ffffff;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.versus-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.team-side {
  width: 42%;
}

.team-side.align-right {
  text-align: right;
}

.team-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.team-sub {
  font-size: 0.8rem;
  color: var(--muted-label);
}

.vs-divider {
  font-family: var(--font-subheading);
  font-weight: 900;
  color: var(--accent-primary);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.matchup-details {
  flex-grow: 1;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.matchup-edge {
  background: var(--surface-alt);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.edge-lbl {
  color: var(--muted-label);
  font-weight: 600;
}

.edge-val {
  color: var(--accent-primary);
  font-weight: 700;
  font-family: var(--font-subheading);
}

/* MATCH CENTER (EXPANDED MATCH BLOCKS) */
.match-center-section {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.expanded-previews-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.expanded-preview-card {
  position: relative;
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  overflow: hidden;
  transition: border-color var(--transition-speed);
}

.expanded-preview-card:hover {
  border-color: var(--accent-primary);
}

.preview-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge-accent {
  background: rgba(220, 38, 38, 0.05);
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  padding: 0.3rem 1rem;
  border-radius: 4px;
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.85rem;
}

.rank-indicator {
  font-family: var(--font-subheading);
  font-weight: 600;
  color: var(--accent-primary);
}

.preview-title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  background: var(--surface-alt);
  padding: 1.5rem;
  border-radius: 8px;
}

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

.comp-team-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.comp-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.4rem;
}

.comp-stat-row strong {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
}

.comp-vs {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-primary);
}

.preview-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.narrative-block h4 {
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.narrative-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* GROUP RACE SNAPSHOTS */
.group-snapshot-section {
  background-color: var(--primary-bg);
}

.group-snapshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}

.snapshot-card {
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.75rem;
}

.snap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.snap-group {
  font-family: var(--font-subheading);
  font-weight: 700;
  color: var(--accent-primary);
  font-size: 1.1rem;
}

.snap-fav {
  font-size: 0.75rem;
  background: rgba(15, 23, 42, 0.05);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  color: var(--text-secondary);
}

.snap-matchup {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.snap-team-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.snap-ratio-bar {
  background: rgba(15, 23, 42, 0.05);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 1rem;
}

.snap-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--accent-primary);
}

/* HOST NATIONS WATCH */
.hosts-watch-section {
  background-color: var(--secondary-bg);
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.host-card {
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: border-color var(--transition-speed);
}

.host-card:hover {
  border-color: var(--accent-primary);
}

.host-badge {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.host-rank-tag {
  display: inline-block;
  font-family: var(--font-subheading);
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.host-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface-alt);
  padding: 1.25rem;
  border-radius: 6px;
}

.host-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 0.5rem;
}

.host-stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.host-stat-row strong {
  font-family: var(--font-subheading);
  font-size: 1rem;
}

/* TOURNAMENT GUIDE */
.guide-section {
  background-color: var(--primary-bg);
}

.grid-two-cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.guide-item {
  margin-top: 2rem;
}

.guide-item h4 {
  color: var(--accent-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.guide-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.guide-card-panel {
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
}

.guide-card-panel h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.guide-card-panel p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.guide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guide-list li {
  color: var(--accent-secondary);
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 1.05rem;
}

/* FAQ SECTION */
.faq-section {
  background-color: var(--secondary-bg);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem;
  text-align: left;
  font-family: var(--font-subheading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-trigger .arrow {
  font-size: 0.8rem;
  color: var(--accent-primary);
  transition: transform var(--transition-speed);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) ease-out;
  background: var(--surface-alt);
}

.faq-content p {
  padding: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-trigger .arrow {
  transform: rotate(180deg);
}

/* LEGAL SECTIONS (TABS) */
.legal-overlay-section {
  background-color: var(--primary-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.legal-tab-triggers {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-family: var(--font-subheading);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.tab-btn.active, .tab-btn:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: rgba(220, 38, 38, 0.05);
}

.legal-tab-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3rem;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-pane h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.meta-date {
  color: var(--accent-primary);
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.tab-pane h4 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent-primary);
}

.tab-pane p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* FOOTER SECTION */
.main-footer {
  background-color: #0f172a; /* Slate Black contrast footer */
  color: #94a3b8;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 5.25rem 2rem 3rem 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-desc {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #94a3b8;
}

.footer-links-grid {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

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

.footer-column h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-speed);
}

.footer-column a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #64748b;
}

.address-tag {
  font-family: var(--font-subheading);
  font-weight: 700;
  color: var(--accent-primary);
  font-size: 0.95rem;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-bg);
  border-top: 1px solid var(--accent-primary);
  padding: 1.5rem 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

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

.banner-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 900px;
}

.banner-text a {
  color: var(--accent-primary);
  text-decoration: none;
}

.banner-actions {
  display: flex;
  gap: 1rem;
}

/* RESPONSIVE MEDIA QUERIES */

/* Large Tablets & Medium Desktops */
@media (max-width: 1200px) {
  .section-container {
    padding: 3.5rem 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

/* Small Tablets & Mobile Devices */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 2rem;
    z-index: 998;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .grid-two-cols {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .preview-narrative {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  
  .comp-vs {
    margin: 0.5rem 0;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links-grid {
    gap: 2rem;
  }
  
  .legal-tab-triggers {
    flex-wrap: wrap;
  }
  
  .legal-tab-content {
    padding: 1.5rem;
  }
}

/* Extreme Small Mobile */
@media (max-width: 480px) {
  .section-container {
    padding: 2rem 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-stats-widget {
    flex-direction: column;
    gap: 1rem;
  }
  
  .preview-title {
    font-size: 1.5rem;
  }
}