:root {
  --primary: #0a1628;
  --primary-light: #152238;
  --secondary: #1e3a5f;
  --accent: #00d4aa;
  --accent-hover: #00b894;
  --accent-subtle: rgba(0, 212, 170, 0.1);
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --bg: #fafafa;
  --bg-secondary: #f3f4f6;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-md: 0 6px 9px -3px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

[data-theme="dark"] {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --secondary: #334155;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --bg: #0a1628;
  --bg-secondary: #111827;
  --card-bg: #1e293b;
  --border: #334155;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.2);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.3);
  --shadow-md: 0 6px 9px -3px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.4);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  transition: background var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--primary); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.01em; margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

a { color: var(--accent); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent-hover); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--primary); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

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

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

.header {
  position: sticky;
  top: 0;
  background: var(--primary);
  z-index: 1000;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; color: white; font-family: var(--font-heading); font-size: 1.375rem; font-weight: 700; letter-spacing: -0.02em; }
.logo svg { width: 36px; height: 36px; flex-shrink: 0; }

.nav { display: flex; gap: 0.25rem; align-items: center; }
.nav a { color: rgba(255,255,255,0.8); font-weight: 500; font-size: 0.9375rem; padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); position: relative; transition: all var(--transition-fast); }
.nav a:hover, .nav a.active { color: white; background: rgba(255,255,255,0.05); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.mobile-toggle:hover { background: rgba(255,255,255,0.1); }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: white; margin: 4px 0; transition: all var(--transition); border-radius: 1px; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.theme-toggle { background: none; border: none; cursor: pointer; padding: 0.5rem; width: 40px; height: 40px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; transition: background var(--transition-fast); }
.theme-toggle:hover { background: rgba(255,255,255,0.1); }
.theme-toggle svg { width: 20px; height: 20px; fill: white; }

.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 0.5rem); left: 0; background: var(--card-bg); min-width: 220px; border-radius: var(--radius); box-shadow: var(--shadow-xl); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all var(--transition); padding: 0.5rem 0; border: 1px solid var(--border); }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: flex; padding: 0.625rem 1rem; color: var(--text); font-size: 0.9375rem; transition: all var(--transition-fast); }
.dropdown-menu a:hover { background: var(--bg-secondary); color: var(--accent); padding-left: 1.25rem; }

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 5rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,170,0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1rem; color: white; }
.hero p { font-size: 1.125rem; opacity: 0.9; max-width: 600px; margin: 0 auto 2rem; line-height: 1.6; }

.countdown { display: flex; gap: 1rem; justify-content: center; margin: 2rem 0; flex-wrap: wrap; }
.countdown-item { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); padding: 1rem 1.25rem; border-radius: var(--radius); min-width: 80px; border: 1px solid rgba(255,255,255,0.1); }
.countdown-item .number { font-size: 2rem; font-weight: 700; font-family: var(--font-heading); color: var(--accent); line-height: 1; }
.countdown-item .label { font-size: 0.75rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; }

.section { padding: 4rem 0; }
.section-alt { background: var(--bg-secondary); }
.section-dark { background: var(--primary); color: white; }
.section-dark h2, .section-dark h3 { color: white; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header p { color: var(--text-muted); font-size: 1.0625rem; }

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

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-image { height: 180px; background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-image svg { width: 48px; height: 48px; stroke: var(--accent); opacity: 0.8; }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.5rem; font-size: 1.125rem; }
.card-body p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1rem; line-height: 1.6; }
.card-meta { display: flex; gap: 1rem; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1rem; flex-wrap: wrap; }
.card-meta span { display: flex; align-items: center; gap: 0.25rem; }

.ad-slot { background: var(--bg-secondary); border: 2px dashed var(--border); padding: 1rem; text-align: center; color: var(--text-muted); font-size: 0.8125rem; border-radius: var(--radius); min-height: 90px; display: flex; align-items: center; justify-content: center; }

.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 2rem; flex-wrap: wrap; align-items: center; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb-sep { opacity: 0.5; }

.page-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; padding: 3rem 0; text-align: center; }
.page-header h1 { margin-bottom: 0.5rem; color: white; }
.page-header p { opacity: 0.9; font-size: 1.0625rem; }

.faq { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--card-bg); border-radius: var(--radius); margin-bottom: 0.75rem; border: 1px solid var(--border); overflow: hidden; transition: box-shadow var(--transition); }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.active { box-shadow: var(--shadow); }
.faq-question { padding: 1.25rem 1.5rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: none; border: none; width: 100%; text-align: left; font-size: 1rem; color: var(--text); font-family: inherit; transition: color var(--transition-fast); }
.faq-question:hover { color: var(--accent); }
.faq-question svg { width: 20px; height: 20px; transition: transform var(--transition); flex-shrink: 0; stroke: currentColor; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all var(--transition); }
.faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem; max-height: 500px; }
.faq-answer p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }

.newsletter { background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%); padding: 4rem 0; }
.newsletter-box { max-width: 550px; margin: 0 auto; text-align: center; color: white; }
.newsletter h2 { color: white; margin-bottom: 0.5rem; }
.newsletter p { opacity: 0.9; margin-bottom: 1.5rem; font-size: 1rem; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.newsletter-form input { padding: 0.875rem 1.25rem; border-radius: var(--radius); border: none; flex: 1; min-width: 240px; font-size: 1rem; }
.newsletter-form input:focus { outline: 2px solid var(--accent); }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--card-bg); padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; z-index: 1001; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); flex-wrap: wrap; border-top: 1px solid var(--border); }
.cookie-banner p { font-size: 0.875rem; color: var(--text-muted); }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-banner .btn { padding: 0.5rem 1rem; font-size: 0.875rem; }
.cookie-banner[hidden] { display: none !important; }

.footer { background: var(--primary); color: white; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2.5rem; margin-bottom: 3rem; }
.footer-col h4 { color: white; margin-bottom: 1.25rem; font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); margin-bottom: 0.625rem; font-size: 0.9375rem; transition: all var(--transition-fast); }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; font-size: 0.8125rem; opacity: 0.6; }

.sidebar { background: var(--card-bg); padding: 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border); margin-bottom: 2rem; }
.sidebar h3 { margin-bottom: 1rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.sidebar-links a { display: flex; padding: 0.75rem 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: 0.9375rem; transition: all var(--transition-fast); }
.sidebar-links a:hover { color: var(--accent); padding-left: 4px; }
.sidebar-links a:last-child { border-bottom: none; }

.content-layout { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .content-layout { grid-template-columns: 1fr 280px; }
  .content-layout .main-content { order: 1; }
  .content-layout .sidebar { order: 2; }
}

.prose { max-width: 720px; }
.prose h2 { margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 { margin-top: 2rem; }
.prose p { margin-bottom: 1.25rem; font-size: 1.0625rem; }
.prose ul, .prose ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; font-size: 1.0625rem; }
.prose strong { font-weight: 600; }

.tag { display: inline-block; background: var(--accent); color: var(--primary); padding: 0.25rem 0.625rem; border-radius: var(--radius-sm); font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.price-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.price-table th, .price-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); }
.price-table th { background: var(--bg-secondary); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover { background: var(--bg-secondary); }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin: 2.5rem 0; }
.stat-item { text-align: center; padding: 1.5rem 1rem; background: var(--bg-secondary); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.stat-item .number { font-size: 2.5rem; font-weight: 700; font-family: var(--font-heading); color: var(--accent); line-height: 1; }
.stat-item .label { font-size: 0.8125rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.5rem; }

.venue-card { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .venue-card { grid-template-columns: 1fr 320px; } }
.venue-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; }
.venue-info h2 { margin-bottom: 0.5rem; }
.venue-info .location { color: var(--text-muted); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }

.affiliate-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.25rem; background: var(--card-bg); color: var(--text); border-radius: var(--radius); font-weight: 600; font-size: 0.9375rem; transition: all var(--transition); border: 2px solid; margin: 0.25rem; text-decoration: none; }
.affiliate-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--text); }
.affiliate-btn.amazon { border-color: #FF9900; }
.affiliate-btn.amazon:hover { background: #FF9900; color: white; }
.affiliate-btn.fanatics { border-color: #D32F2F; }
.affiliate-btn.fanatics:hover { background: #D32F2F; color: white; }
.affiliate-btn.kitbag { border-color: #1a1a2e; }
.affiliate-btn.kitbag:hover { background: #1a1a2e; color: white; }
.affiliate-btn.adidas { border-color: #000; }
.affiliate-btn.adidas:hover { background: #000; color: white; }
.affiliate-btn.nike { border-color: #000; }
.affiliate-btn.nike:hover { background: #000; color: white; }
.affiliate-btn.redbubble { border-color: #E3292B; }
.affiliate-btn.redbubble:hover { background: #E3292B; color: white; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9375rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: inherit; background: var(--bg); color: var(--text); transition: all var(--transition-fast); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,170,0.15); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }

.map-placeholder { background: var(--bg-secondary); height: 280px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--text-muted); border: 1px solid var(--border); }

.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.error-page h1 { font-size: 5rem; color: var(--accent); margin-bottom: 1rem; }
.error-page p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2rem; }

.hotel-card { display: grid; grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; background: var(--card-bg); border-radius: var(--radius-lg); border: 1px solid var(--border); margin-bottom: 1rem; transition: all var(--transition); }
@media (min-width: 640px) { .hotel-card { grid-template-columns: 120px 1fr auto; align-items: center; } }
.hotel-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.hotel-image { width: 120px; height: 80px; border-radius: var(--radius); background: var(--secondary); flex-shrink: 0; }
.hotel-info h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.hotel-info .rating { color: var(--accent); font-size: 0.875rem; font-weight: 600; }
.hotel-info .location { color: var(--text-muted); font-size: 0.8125rem; }
.hotel-info .price { font-size: 0.9375rem; margin-top: 0.25rem; }
.hotel-book { flex-shrink: 0; }

.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.9375rem; }
.alert-info { background: var(--accent-subtle); border-left: 4px solid var(--accent); color: var(--text); }
.alert-warning { background: #fef3c7; border-left: 4px solid #f59e0b; }
[data-theme="dark"] .alert-warning { background: #78350f; color: #fef3c7; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media (max-width: 768px) {
  .nav { 
    display: none; 
    position: fixed; 
    top: 56px; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: var(--primary); 
    flex-direction: column; 
    padding: 1rem 1.5rem 2rem; 
    gap: 0.125rem; 
    overflow-y: auto;
    z-index: 999;
  }
  .nav.active { display: flex; }
  .nav a { padding: 0.75rem 0.5rem; font-size: 1rem; border-radius: var(--radius-sm); }
  .mobile-toggle { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: transparent; padding: 0 0 0 0.75rem; border: none; }
  .dropdown-menu a { color: rgba(255,255,255,0.7); padding: 0.5rem 0.5rem; font-size: 0.9375rem; }
  .dropdown-menu a:hover { background: transparent; color: var(--accent); padding-left: 0.5rem; }
  .dropdown-menu a::before { content: ''; }
  
  .hero { padding: 2.5rem 0 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.9375rem; padding: 0 0.5rem; }
  .countdown { gap: 0.5rem; margin: 1.5rem 0; }
  .countdown-item { padding: 0.5rem 0.625rem; min-width: 60px; }
  .countdown-item .number { font-size: 1.375rem; }
  .countdown-item .label { font-size: 0.5625rem; }
  
  .section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 2rem; padding: 0 0.5rem; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 0.9375rem; }
  
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .card-body { padding: 1rem; }
  .card-body h3 { font-size: 1rem; }
  .card-body p { font-size: 0.8125rem; line-height: 1.5; }
  
  .cookie-banner { flex-direction: column; text-align: center; gap: 0.5rem; padding: 0.75rem 1rem; }
  .cookie-banner p { font-size: 0.75rem; line-height: 1.5; }
  .cookie-banner .btn { width: 100%; }
  .newsletter { padding: 2.5rem 0; }
  .newsletter-form { flex-direction: column; padding: 0 1rem; }
  .newsletter-form input, .newsletter-form button { width: 100%; min-width: auto; }
  .newsletter h2 { font-size: 1.375rem; }
  
  .content-layout { gap: 1.5rem; }
  
  .prose h2 { margin-top: 1.5rem; }
  .prose p, .prose li { font-size: 0.9375rem; }
  
  .stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stat-item { padding: 0.75rem 0.5rem; }
  .stat-item .number { font-size: 1.5rem; }
  .stat-item .label { font-size: 0.6875rem; }
  
  .affiliate-btn { display: flex; width: 100%; justify-content: center; padding: 0.75rem 1rem; margin: 0.25rem 0; font-size: 0.875rem; }
  
  .hotel-card { grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
  .hotel-image { width: 100%; height: 100px; }
  .hotel-info h4 { font-size: 0.9375rem; }
  .hotel-book { width: 100%; }
  .hotel-book .btn { width: 100%; }
  
  .error-page h1 { font-size: 3rem; }
  .error-page p { font-size: 1rem; }
  
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2rem; }
  .footer-col h4 { font-size: 0.8125rem; margin-bottom: 0.75rem; }
  .footer-col a { font-size: 0.875rem; margin-bottom: 0.375rem; }
  
  .price-table { font-size: 0.875rem; }
  .price-table th, .price-table td { padding: 0.625rem 0.75rem; }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.125rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.75rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

@media print {
  .header, .footer, .cookie-banner, .ad-slot, .mobile-toggle, .theme-toggle { display: none; }
  .section { padding: 1rem 0; }
  body { color: #000; background: #fff; }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.5s ease forwards; }

@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.05); opacity: 0.8; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(0, 212, 170, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  z-index: 0;
}

.hero-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300d4aa' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-soccer {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 300px;
  height: 300px;
  opacity: 0.05;
  animation: float 6s ease-in-out infinite;
}

.showcase-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 2rem; }
  .showcase-section { padding: 3rem 0; }
}

.showcase-content h2 { margin-bottom: 1rem; }
.showcase-content p { margin-bottom: 1.5rem; font-size: 1.0625rem; color: var(--text-muted); }

.showcase-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-visual svg { width: 40%; height: 40%; stroke: var(--accent); opacity: 0.6; }

.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all var(--transition);
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.9) 100%);
  z-index: 1;
}

.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.city-card-content { position: relative; z-index: 2; }
.city-card h3 { color: white; margin-bottom: 0.25rem; font-size: 1.25rem; }
.city-card p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

.city-card-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 170, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.city-card-icon svg { width: 24px; height: 24px; stroke: var(--accent); }

.stadium-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.stadium-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.stadium-card-image {
  height: 160px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stadium-card-image svg { width: 64px; height: 64px; stroke: var(--accent); opacity: 0.7; }

.stadium-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--primary);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.stadium-card-body { padding: 1.25rem; }
.stadium-card-body h3 { margin-bottom: 0.25rem; }
.stadium-card-body .location { color: var(--text-muted); font-size: 0.8125rem; margin-bottom: 0.75rem; }
.stadium-card-body p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.5; }

.atmospheric-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.atmospheric-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%2300d4aa' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.atmospheric-content { position: relative; z-index: 1; text-align: center; color: white; }
.atmospheric-content h2 { color: white; margin-bottom: 1rem; }
.atmospheric-content p { max-width: 600px; margin: 0 auto 2rem; opacity: 0.9; font-size: 1.0625rem; }

.merch-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.merch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.merch-card-visual {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--card-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.merch-card-visual svg { width: 80px; height: 80px; opacity: 0.6; }

.merch-card-color { position: absolute; bottom: 1rem; left: 1rem; display: flex; gap: 0.5rem; }
.merch-color-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid white; box-shadow: var(--shadow-sm); }

.merch-card-body { padding: 1.25rem; }
.merch-card-body h3 { margin-bottom: 0.25rem; }
.merch-card-body .team { color: var(--accent); font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.5rem; }
.merch-card-body p { color: var(--text-muted); font-size: 0.875rem; }

.watch-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.watch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.watch-card-visual {
  height: 140px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-card-visual svg { width: 48px; height: 48px; stroke: var(--accent); }

.watch-card-body { padding: 1.25rem; flex: 1; }
.watch-card-body h4 { margin-bottom: 0.25rem; }
.watch-card-body p { color: var(--text-muted); font-size: 0.8125rem; line-height: 1.5; }

.visual-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border: none;
  margin: 0;
  opacity: 0.3;
}

.image-overlay {
  position: relative;
}

.image-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.3));
  pointer-events: none;
}

.stat-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-subtle);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.icon-box {
  width: 64px;
  height: 64px;
  background: var(--accent-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-box svg { width: 32px; height: 32px; stroke: var(--accent); }

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-5px);
}

.timeline-item h4 { margin-bottom: 0.25rem; }
.timeline-item p { color: var(--text-muted); font-size: 0.9375rem; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}

.feature-item:hover { background: var(--accent-subtle); }

.feature-item svg { width: 24px; height: 24px; stroke: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }
.feature-item p { font-size: 0.9375rem; margin: 0; }

@media (max-width: 768px) {
  .atmospheric-section { padding: 4rem 0; }
  .showcase-visual { aspect-ratio: 16/10; }
  .city-card { aspect-ratio: 4/3; }
  .stadium-card-image { height: 120px; }
  .stadium-card-image svg { width: 48px; height: 48px; }
  .merch-card-visual { height: 160px; }
  .merch-card-visual svg { width: 64px; height: 64px; }
}