/* ============================================
   SAVANNAHFANTASY.COM - UNIQUE DESIGN SYSTEM
   Architecture: SMACSS (Layout/Module/State/Theme)
   Theme: Nordic Adventure (Danish Fantasy)
   Effect: Animated Gradient Mesh + Particles
   ============================================ */

/* ============================================
   LOCAL FONTS - Inter & Poppins
   ============================================ */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Regular.woff2') format('woff2'),
         url('../fonts/inter/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Medium.woff2') format('woff2'),
         url('../fonts/inter/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-SemiBold.woff2') format('woff2'),
         url('../fonts/inter/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Bold.woff2') format('woff2'),
         url('../fonts/inter/Inter-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-SemiBold.woff2') format('woff2'),
         url('../fonts/poppins/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.woff2') format('woff2'),
         url('../fonts/poppins/Poppins-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   BASE - Reset & Typography
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Nordic Adventure Color Palette */
    --nordic-deep-blue: #0a2540;
    --nordic-ice-blue: #1e5f8e;
    --nordic-sky: #3b9ae1;
    --nordic-amber: #f4a261;
    --nordic-gold: #e9c46a;
    --nordic-snow: #f8f9fa;
    --nordic-charcoal: #2b2d42;
    --nordic-midnight: #0d1b2a;
    --nordic-accent: #06ffa5;
    --nordic-warm: #ffb347;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Layout */
    --header-height: 80px;
    --container-max: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.1);
    --shadow-md: 0 4px 16px rgba(10, 37, 64, 0.15);
    --shadow-lg: 0 8px 32px rgba(10, 37, 64, 0.2);
    --shadow-glow: 0 0 20px rgba(59, 154, 225, 0.3);
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--nordic-charcoal);
    background: var(--nordic-midnight);
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   LAYOUT - Page Structure (SMACSS)
   ============================================ */
.l-page-wrapper {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.l-header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 154, 225, 0.2);
    height: var(--header-height);
    transition: all 0.3s ease;
}

.l-header-container.scrolled {
    background: rgba(10, 37, 64, 0.98);
    box-shadow: var(--shadow-md);
}

.l-main-content {
    padding-top: var(--header-height);
    position: relative;
    z-index: 1;
}

.l-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.l-section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.l-grid {
    display: grid;
    gap: var(--spacing-lg);
}

.l-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.l-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.l-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.l-animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--nordic-midnight) 0%, var(--nordic-deep-blue) 50%, var(--nordic-charcoal) 100%);
}

.l-animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 154, 225, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 162, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(6, 255, 165, 0.08) 0%, transparent 50%);
    animation: gradient-rotate 20s ease infinite;
}

.l-animated-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(59, 154, 225, 0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(244, 162, 97, 0.1), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(6, 255, 165, 0.1), transparent),
        radial-gradient(2px 2px at 90% 40%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 33% 60%, rgba(59, 154, 225, 0.1), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: particle-float 25s ease infinite;
    opacity: 0.6;
}

@keyframes gradient-rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

@keyframes particle-float {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%, 50% 0%; }
    25% { background-position: 100% 0%, 0% 100%, 50% 50%, 100% 100%, 0% 0%, 50% 100%; }
    50% { background-position: 100% 100%, 0% 0%, 50% 50%, 100% 0%, 0% 100%, 50% 0%; }
    75% { background-position: 0% 100%, 100% 0%, 50% 50%, 0% 0%, 100% 100%, 50% 100%; }
}

/* ============================================
   MODULE - Header & Navigation
   ============================================ */
.m-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--spacing-md);
}

.m-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.m-logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.m-logo-link:hover .m-logo-img {
    transform: scale(1.05);
}

.m-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.m-nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.m-nav-link {
    color: var(--nordic-snow);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.m-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--nordic-amber);
    transition: width 0.3s ease;
}

.m-nav-link:hover::after,
.m-nav-link.is-active::after {
    width: 80%;
}

.m-nav-link:hover {
    color: var(--nordic-amber);
    background: rgba(59, 154, 225, 0.1);
}

/* Burger Menu */
.m-burger-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
    position: relative;
}

.m-burger-line {
    width: 28px;
    height: 3px;
    background: var(--nordic-snow);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.m-burger-toggle.is-active .m-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.m-burger-toggle.is-active .m-burger-line:nth-child(2) {
    opacity: 0;
}

.m-burger-toggle.is-active .m-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.m-mobile-menu {
    position: fixed;
    top: calc(var(--header-height) - 1px);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.m-mobile-menu.is-open {
    transform: translateX(0);
}

.m-mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.m-mobile-nav-link {
    color: var(--nordic-snow);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.m-mobile-nav-link:hover,
.m-mobile-nav-link.is-active {
    background: rgba(59, 154, 225, 0.15);
    border-left-color: var(--nordic-amber);
    padding-left: var(--spacing-md);
    color: var(--nordic-amber);
}

/* ============================================
   MODULE - Hero Section
   ============================================ */
.m-hero-banner {
    position: relative;
    padding: var(--spacing-xxl) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

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

.m-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--nordic-snow);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    animation: fade-in-up 0.8s ease;
}

.m-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(248, 249, 250, 0.9);
    margin-bottom: var(--spacing-xl);
    animation: fade-in-up 0.8s ease 0.2s both;
}

.m-hero-cta-group {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s ease 0.4s both;
}

/* ============================================
   MODULE - Buttons
   ============================================ */
.m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

.m-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.m-btn:hover::before {
    width: 300px;
    height: 300px;
}

.m-btn-primary {
    background: linear-gradient(135deg, var(--nordic-amber) 0%, var(--nordic-gold) 100%);
    color: var(--nordic-midnight);
    box-shadow: var(--shadow-glow);
}

.m-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 162, 97, 0.4);
}

.m-btn-secondary {
    background: rgba(59, 154, 225, 0.2);
    color: var(--nordic-snow);
    border: 2px solid var(--nordic-sky);
}

.m-btn-secondary:hover {
    background: rgba(59, 154, 225, 0.3);
    border-color: var(--nordic-amber);
    color: var(--nordic-amber);
}

.m-btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

/* ============================================
   MODULE - Cards
   ============================================ */
.m-feature-card {
    background: rgba(248, 249, 250, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 154, 225, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.m-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 154, 225, 0.1), transparent);
    transition: left 0.5s ease;
}

.m-feature-card:hover::before {
    left: 100%;
}

.m-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--nordic-amber);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(244, 162, 97, 0.2);
}

.m-feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.m-feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nordic-snow);
    margin-bottom: var(--spacing-sm);
}

.m-feature-text {
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.7;
}

.m-casino-card {
    background: rgba(248, 249, 250, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(59, 154, 225, 0.25);
    border-radius: var(--border-radius-lg);
    padding:20px 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.m-casino-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--nordic-amber), var(--nordic-gold), var(--nordic-amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.m-casino-card:hover::after {
    transform: scaleX(1);
}

.m-casino-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--nordic-amber);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(244, 162, 97, 0.3);
}

.m-casino-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.m-casino-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.m-casino-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nordic-snow);
    flex: 1;
}

.m-casino-bonus {
    background: linear-gradient(135deg, var(--nordic-amber), var(--nordic-gold));
    color: var(--nordic-midnight);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.m-casino-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.m-casino-feature-item {
    color: rgba(248, 249, 250, 0.9);
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-lg);
    position: relative;
}

.m-casino-feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--nordic-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.m-casino-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-direction: column;
    align-items: stretch;
}

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

/* ============================================
   MODULE - FAQ Accordion
   ============================================ */
.m-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.m-faq-item {
    background: rgba(248, 249, 250, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 154, 225, 0.2);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.m-faq-item.is-open {
    border-color: var(--nordic-amber);
    box-shadow: var(--shadow-md);
}

.m-faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nordic-snow);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.m-faq-question:hover {
    color: var(--nordic-amber);
}

.m-faq-icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    color: var(--nordic-sky);
}

.m-faq-item.is-open .m-faq-icon {
    transform: rotate(180deg);
}

.m-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--spacing-md);
}

.m-faq-item.is-open .m-faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.m-faq-answer-text {
    color: rgba(248, 249, 250, 0.85);
    line-height: 1.7;
}

/* ============================================
   MODULE - Footer
   ============================================ */
.m-footer {
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(59, 154, 225, 0.2);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    margin-top: var(--spacing-xxl);
}

.m-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.m-footer-section-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nordic-amber);
    margin-bottom: var(--spacing-md);
}

.m-footer-description {
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.m-footer-list {
    list-style: none;
}

.m-footer-link {
    color: rgba(248, 249, 250, 0.8);
    text-decoration: none;
    display: block;
    padding: var(--spacing-xs) 0;
    transition: all 0.3s ease;
}

.m-footer-link:hover {
    color: var(--nordic-amber);
    padding-left: var(--spacing-sm);
}

.m-footer-bottom {
    border-top: 1px solid rgba(59, 154, 225, 0.2);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: rgba(248, 249, 250, 0.6);
    font-size: 0.9rem;
}

.m-compliance-logos {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-md);
}

.m-compliance-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xs);
    border-radius: var(--border-radius-sm);
}

.m-compliance-logo:hover {
    opacity: 1;
}

/* ============================================
   MODULE - Disclaimer
   ============================================ */
.m-disclaimer {
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.15), rgba(59, 154, 225, 0.15));
    border: 2px solid var(--nordic-amber);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-xxl) 0;
    text-align: center;
}

.m-disclaimer-text {
    color: var(--nordic-snow);
    font-size: 0.95rem;
    line-height: 1.7;
}

.m-disclaimer-link {
    color: var(--nordic-amber);
    text-decoration: underline;
}

/* ============================================
   MODULE - Articles Preview
   ============================================ */
.m-articles-section {
    padding: var(--spacing-xxl) 0;
}

.m-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--nordic-snow);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    display: inline-block;
    width: 100%;
}

.m-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--nordic-amber), var(--nordic-gold));
    border-radius: 2px;
}

.m-article-card {
    background: rgba(248, 249, 250, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 154, 225, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    height: 100%;
}

.m-article-card:hover {
    transform: translateY(-8px);
    border-color: var(--nordic-amber);
    box-shadow: var(--shadow-lg);
}

.m-article-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--nordic-snow);
    margin-bottom: var(--spacing-sm);
}

.m-article-excerpt {
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.m-article-meta {
    color: var(--nordic-amber);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   STATE - Interactive States
   ============================================ */
.is-hidden {
    display: none !important;
}

.is-visible {
    display: block !important;
}

.is-active {
    color: var(--nordic-amber) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.m-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   MODULE - Age Modal
   ============================================ */
.m-age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.m-age-modal-content {
    background: rgba(248, 249, 250, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid var(--nordic-amber);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.m-age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--nordic-snow);
    margin-bottom: var(--spacing-md);
}

.m-age-modal-content p {
    color: rgba(248, 249, 250, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.m-age-modal-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.m-age-modal-buttons .m-btn {
    min-width: 150px;
}

/* ============================================
   MODULE - Cookie Banner
   ============================================ */
.m-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 37, 64, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--nordic-amber);
    padding: var(--spacing-md);
    z-index: 9999;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.m-cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.m-cookie-content p {
    color: var(--nordic-snow);
    flex: 1;
    min-width: 250px;
}

.m-cookie-content .m-btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .m-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .m-cookie-content .m-btn {
        width: 100%;
    }
    
    .m-age-modal-buttons {
        flex-direction: column;
    }
    
    .m-age-modal-buttons .m-btn {
        width: 100%;
    }
}

/* ============================================
   MODULE - Success Modal
   ============================================ */
.m-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.m-success-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.m-success-modal-content {
    background: rgba(248, 249, 250, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid var(--nordic-amber);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.m-success-modal.is-visible .m-success-modal-content {
    transform: scale(1);
}

.m-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--nordic-accent), var(--nordic-sky));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--nordic-midnight);
    font-weight: bold;
    animation: success-pulse 0.6s ease;
}

@keyframes success-pulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.m-success-modal-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--nordic-snow);
    margin-bottom: var(--spacing-md);
}

.m-success-modal-content p {
    color: rgba(248, 249, 250, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    font-size: 1.1rem;
}

.m-success-close {
    min-width: 150px;
}

@media (max-width: 768px) {
    .m-success-modal-content {
        padding: var(--spacing-lg);
    }
    
    .m-success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .m-success-modal-content h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE - Mobile First
   ============================================ */
@media (max-width: 991px) {
    .m-nav {
        display: none;
    }
    
    .m-burger-toggle {
        display: flex;
    }
    
    .m-hero-banner {
        min-height: 500px;
        padding: var(--spacing-xl) 0;
    }
    
    .m-hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .m-btn {
        width: 100%;
    }
    
    .l-grid-3,
    .l-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .m-casino-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xxl: 3rem;
        --spacing-xl: 2rem;
    }
    
    .l-section {
        padding: var(--spacing-xl) 0;
    }
    
    .m-hero-title {
        font-size: 2rem;
    }
    
    .m-feature-card,
    .m-casino-card {
        padding: var(--spacing-md);
    }
    
    .m-footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .l-container {
        padding: 0 var(--spacing-sm);
    }
    
    .m-hero-banner {
        min-height: 400px;
    }
}

