/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f4fbf7;
    --surface-dark: #114023;
    --surface-light: #ffffff;
    --text-light: #f8fafc;
    --text-dark: #0f291b;
    --text-muted: #4b5c52;
    
    /* Luxury Green & Yellow Gradients & Accents */
    --accent-gold-primary: #facc15;
    --accent-gold-hover: #fef08a;
    --accent-gold-dark: #ca8a04;
    
    --accent-green: #15803d;
    --accent-green-light: #22c55e;
    --accent-blue: #0284c7;
    
    --border-light: #e2e8f0;
    --border-dark: #1e3f20;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-luxury: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.text-white {
    color: #ffffff;
}

.text-gray {
    color: #cbd5e1;
}

.text-green {
    color: var(--accent-green);
}

.text-blue {
    color: var(--accent-blue);
}

.gold-gradient-text {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-green) 50%, var(--accent-gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================
   HEADER & NAVIGATION (SLIM, WHITE/GREEN/YELLOW)
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-green);
    box-shadow: 0 2px 15px rgba(21, 80, 61, 0.08);
    transition: var(--transition-luxury);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px; /* Slim Header Height */
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-svg {
    filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.2));
}

.nav-menu ul {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-gold-primary));
    transition: var(--transition-luxury);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--text-dark);
    position: relative;
    transition: var(--transition-luxury);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-luxury);
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    background: rgba(21, 80, 61, 0.06);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: pulse 3s infinite;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.hero-intro {
    font-size: 1.1rem;
    max-width: 700px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-luxury);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(21, 80, 61, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-green-light), var(--accent-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 80, 61, 0.25);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(34, 197, 94, 0.05);
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

/* Trophy Showcase Animation */
.trophy-showcase-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trophy-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.2) 0%, rgba(250, 204, 21, 0) 70%);
    filter: blur(12px);
    animation: rotateGlow 8s infinite linear;
}

.trophy-svg {
    width: 100px;
    height: 100px;
    z-index: 2;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.15));
    animation: floatTrophy 4s infinite ease-in-out;
}

/* ==========================================
   COMMON COMPONENT: SECTION HEADERS
   ========================================== */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    color: var(--accent-green);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.section-tag-gold {
    color: var(--accent-gold-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

/* Editorial variant changes background and text colors to meet white cards rule */
.matchups-section, .previews-section, .hosts-watch-section, .faq-section {
    background-color: var(--surface-light);
    color: var(--text-dark);
}

.matchups-section .section-title,
.previews-section .section-title,
.hosts-watch-section .section-title,
.faq-section .section-title {
    color: var(--text-dark);
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-green);
    margin: 20px auto;
}

.section-divider.gold {
    background: linear-gradient(90deg, var(--accent-gold-primary), var(--accent-gold-dark));
}

.section-description {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--text-muted);
}

/* ==========================================
   MATCH INDEX CARDS
   ========================================== */
.match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.match-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    transition: var(--transition-luxury);
    box-shadow: 0 4px 15px rgba(21, 80, 61, 0.03);
    display: flex;
    flex-direction: column;
}

.match-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(21, 80, 61, 0.08);
    border-color: var(--accent-green);
}

.card-group-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-green);
    color: var(--accent-gold-hover);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--accent-gold-dark);
}

.match-teams {
    margin-top: 15px;
    margin-bottom: 24px;
}

.team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
}

.team-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.team-rank {
    font-size: 0.8rem;
    background-color: #f0fdf4;
    color: var(--accent-green);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.vs-divider {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin: 4px 0;
}

.card-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    margin-bottom: 20px;
}

.card-stat {
    display: flex;
    flex-direction: column;
}

.stat-lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.stat-val {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-card-link {
    display: block;
    text-align: center;
    padding: 12px;
    background-color: var(--accent-green);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-top: auto;
}

.btn-card-link:hover {
    background-color: var(--accent-gold-primary);
    color: #000000;
}

/* ==========================================
   TITLE CONTEXT SECTION (DARK GREEN STYLE)
   ========================================== */
.title-context-section {
    background-color: var(--surface-dark);
}

.favorites-table-wrapper {
    background-color: #0d351d;
    border: 1px solid var(--border-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.favorites-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.favorites-table th {
    background-color: rgba(255, 255, 255, 0.02);
    font-family: var(--font-heading);
    color: var(--accent-gold-primary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-dark);
    text-transform: uppercase;
}

.favorites-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-light);
    font-size: 0.95rem;
}

.favorites-table tr:last-child td {
    border-bottom: none;
}

.favorites-table tr:hover {
    background-color: rgba(250, 204, 21, 0.05);
}

.gold-rank-badge {
    background: linear-gradient(135deg, var(--accent-gold-primary), var(--accent-gold-dark));
    color: #000000;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
}

.silver-rank-badge {
    background-color: #cbd5e1;
    color: #0f172a;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
}

.dark-rank-badge {
    background-color: rgba(0, 0, 0, 0.2);
    color: #94a3b8;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
    border: 1px solid var(--border-dark);
}

.nation-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.odds-val {
    font-weight: 700;
    color: var(--accent-gold-hover);
}

.percent-val {
    font-weight: 700;
    color: var(--accent-green-light);
}

/* ==========================================
   EXPANDED MATCH PREVIEWS
   ========================================== */
.previews-section {
    border-top: 1px solid var(--border-light);
}

.expanded-previews-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.preview-item {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(21, 80, 61, 0.04);
}

.preview-header {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.preview-group {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 2px;
}

.preview-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: 6px;
}

.preview-title .vs-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 10px;
    font-weight: 400;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.team-column {
    background-color: var(--bg-secondary);
    border: 1px solid #e8f5ed;
    border-radius: 8px;
    padding: 24px;
}

.team-header {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 16px;
    border-bottom: 1px solid #d1ebd9;
    padding-bottom: 10px;
    color: var(--accent-green);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #d1ebd9;
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.stat-row strong {
    color: var(--text-dark);
    font-weight: 700;
}

.preview-editorial {
    font-size: 1rem;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-gold-primary);
    padding-left: 20px;
    line-height: 1.7;
}

/* ==========================================
   GROUP RACE CONTEXT (DARK SCHEME)
   ========================================== */
.group-context-section {
    background-color: var(--surface-dark);
}

.group-flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.group-flow-card {
    background-color: #0d351d;
    border: 1px solid var(--border-dark);
    border-radius: var(--border-radius);
    padding: 24px;
}

.group-lbl {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--accent-gold-primary);
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 10px;
    margin-bottom: 16px;
}

.comp-team-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-light);
}

.comp-team-row.text-muted {
    color: #a3b899;
}

.comp-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.comp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green-light), var(--accent-gold-primary));
    border-radius: 10px;
}

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

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.host-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 35px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(21, 80, 61, 0.03);
    transition: var(--transition-luxury);
}

.host-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(21, 80, 61, 0.08);
}

.host-badge {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.host-header-info {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.host-rank {
    background-color: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--text-dark);
}

.host-group {
    background-color: rgba(250, 204, 21, 0.15);
    color: var(--accent-gold-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.host-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
}

.host-stat-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.host-stat-box .val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.host-stat-box .lbl {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ==========================================
   GUIDE SECTION
   ========================================== */
.guide-section {
    background-color: var(--bg-secondary);
}

.guide-box {
    background-color: var(--surface-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--border-radius);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.guide-badge {
    color: var(--accent-gold-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.guide-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-top: 8px;
    margin-bottom: 20px;
}

.guide-text {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 24px;
}

.guide-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-list li {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.guide-list strong {
    color: var(--accent-gold-primary);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: #f8fafc;
}

.faq-question {
    width: 100%;
    padding: 24px;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-muted);
}

.faq-item.active .faq-question::after {
    content: '-';
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    border-top: 1px solid var(--border-light);
}

.faq-answer p {
    padding: 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background-color: #092010;
    border-top: 1px solid var(--border-dark);
    padding: 80px 0 40px;
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-text {
    color: #cbd5e1;
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--accent-gold-primary);
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

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

.address-text {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
}

.copyright {
    color: #a3b899;
    font-size: 0.85rem;
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #092010;
    border-top: 2px solid var(--accent-gold-primary);
    z-index: 999;
    padding: 20px 0;
    transition: var(--transition-luxury);
    color: var(--text-light);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    font-size: 0.85rem;
}

.cookie-content a {
    color: var(--accent-gold-primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-primary {
    background-color: var(--accent-gold-primary);
    color: #000000;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}

.btn-cookie-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}

.btn-cookie-primary:hover {
    background-color: var(--accent-gold-hover);
}

.btn-cookie-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* ==========================================
   MODALS (LEGAL)
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-box {
    background-color: var(--surface-light);
    color: var(--text-dark);
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    overflow-y: auto;
    border: 2px solid var(--accent-green);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-dark);
}

.legal-doc h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.legal-doc h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-doc p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.legal-doc .last-updated {
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.address-block-styled {
    background-color: var(--bg-secondary);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-green);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.hidden {
    display: none !important;
}

/* ==========================================
   ANIMATIONS & EFFECTS
   ========================================== */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.3); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes floatTrophy {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN Breakpoints
   ========================================== */
@media (max-width: 1200px) {
    .hero-headline {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hosts-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 60px; /* Slim header spacing */
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--bg-primary);
        transition: var(--transition-luxury);
        padding: 40px 24px;
        border-top: 2px solid var(--accent-green);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .nav-link {
        font-size: 1rem;
    }

    .hamburger.active {
        background-color: transparent;
    }

    .hamburger.active::before {
        transform: rotate(45deg);
        top: 0;
    }

    .hamburger.active::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
}