/* General Resets & Base Styles */
:root {
    /* Color Palette - New Modern Theme */
    --primary-color: #6366F1; /* Indigo - for main buttons, accents */
    --secondary-color: #10B981; /* Emerald - for highlights, active states */
    --accent-color: #F59E0B; /* Amber - for success messages, positive actions */
    --accent-secondary: #8B5CF6; /* Violet - for secondary accents */
    --accent-tertiary: #EF4444; /* Red - for warnings, special elements */
    --text-dark: #1F2937; /* Dark Grey - for main body text */
    --text-light: #FFFFFF; /* Pure White - for text on dark backgrounds */
    --background-light: #F9FAFB; /* Light Grey - for main content areas */
    --background-dark: #111827; /* Dark Grey - for header, footer */
    --background-gradient: #4F46E5; /* Gradient start */
    --background-gradient-end: #7C3AED; /* Gradient end */
    --border-color: #E5E7EB; /* Light Grey - for borders, dividers */
    --card-bg: #FFFFFF; /* Card background */
    --hover-bg: #F3F4F6; /* Hover states */

    /* Typography - Futuristic Fonts */
    --font-primary: 'Orbitron', 'Courier New', monospace;
    --font-heading: 'Audiowide', 'Orbitron', cursive;
    --font-body: 'Exo 2', 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --border-radius-sm: 2px;
    --border-radius-md: 6px;
    --border-radius-lg: 10px;

    /* Box Shadow */
    --shadow-light: 0 4px 15px rgba(99, 102, 241, 0.2);
    --shadow-medium: 0 8px 25px rgba(99, 102, 241, 0.3);
    --shadow-glow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling and mobile optimizations */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
      /* Remove list bullets globally */
      ul, ol {
        list-style: none;
        list-style-type: none;
    }
    
    /* Additional list styling */
    .styled-list {
        list-style: none;
        list-style-type: none;
        padding-left: 0;
    }
    
    .styled-list li {
        list-style: none;
        list-style-type: none;
        margin-bottom: 0.5rem;
        padding-left: 0;
    }
    
    body {
        font-family: var(--font-body);
        line-height: 1.6;
        color: var(--text-dark);
        background: linear-gradient(135deg, var(--background-gradient) 0%, var(--background-gradient-end) 50%, var(--background-gradient) 100%);
        min-height: 100vh;
        position: relative;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }
    
    /* Header Styles */
    .header {
        background: linear-gradient(135deg, var(--background-dark) 0%, var(--card-bg) 50%, var(--background-dark) 100%);
        padding: 1rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
        border-bottom: 2px solid var(--primary-color);
        backdrop-filter: blur(10px);
        overflow: hidden;
    }
    
    /* Header Background Effects */
    .header-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
    
    .header-grid {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
        background-size: 20px 20px;
        animation: grid-move 20s linear infinite;
    }
    
    @keyframes grid-move {
        0% { transform: translate(0, 0); }
        100% { transform: translate(20px, 20px); }
    }
    
    .header-particles {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
        animation: particle-float 15s ease-in-out infinite;
    }
    
    @keyframes particle-float {
        0%, 100% { opacity: 0.3; transform: translateY(0px); }
        50% { opacity: 0.6; transform: translateY(-10px); }
    }
    
    .header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        animation: scanline 2s linear infinite;
    }
    
    @keyframes scanline {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    /* Logo Section */
    .logo-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .logo {
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 1rem;
        transition: all 0.3s ease;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .logo-orb {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        animation: logo-orb-rotate 10s linear infinite;
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    }
    
    .logo-orb::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 50%;
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
        z-index: -1;
        animation: logo-orb-glow 3s ease-in-out infinite;
    }
    
    @keyframes logo-orb-rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    @keyframes logo-orb-glow {
        0%, 100% { opacity: 0.5; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.1); }
    }
    
    .logo-icon {
        font-size: 2rem;
        color: white;
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
        animation: logo-icon-pulse 2s ease-in-out infinite;
    }
    
    @keyframes logo-icon-pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.2); }
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .logo-main {
        font-size: 2rem;
        font-weight: 900;
        font-family: var(--font-heading);
        color: var(--primary-color);
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
        line-height: 1;
    }
    
    .logo-sub {
        font-size: 1.2rem;
        font-weight: 700;
        font-family: var(--font-primary);
        color: var(--secondary-color);
        text-shadow: 0 0 15px var(--secondary-color);
        letter-spacing: 0.2em;
        line-height: 1;
    }
    
    .logo-tagline {
        font-size: 0.9rem;
        font-family: var(--font-body);
        color: var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.8;
        animation: tagline-flicker 4s ease-in-out infinite;
    }
    
    @keyframes tagline-flicker {
        0%, 100% { opacity: 0.8; }
        50% { opacity: 1; }
    }
    
    /* Navigation */
    .main-nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .nav-menu {
        display: flex;
        gap: 1rem;
        align-items: center;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-link {
        text-decoration: none;
        color: var(--text-light);
        font-weight: 600;
        font-family: var(--font-primary);
        font-size: 0.95rem;
        transition: all 0.3s ease;
        padding: 0.8rem 1.2rem;
        border-radius: var(--border-radius-sm);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
        border: 1px solid transparent;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover {
        color: var(--primary-color);
        border-color: var(--primary-color);
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
        transform: translateY(-2px);
        background: rgba(99, 102, 241, 0.1);
    }
    
    .nav-link.active {
        background: rgba(99, 102, 241, 0.2);
        border: 2px solid var(--primary-color);
        box-shadow: 0 0 25px rgba(99, 102, 241, 0.5);
        color: var(--primary-color);
    }
    
    .nav-link.active::before {
        display: none;
    }
    
    .nav-icon {
        font-size: 1.1rem;
        filter: drop-shadow(0 0 5px currentColor);
    }
    
    .nav-text {
        font-weight: 600;
        letter-spacing: 0.05em;
    }
    
    /* Basket Link Special Styling */
    .basket-link {
        position: relative;
    }
    
    .basket-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: var(--secondary-color);
        color: white;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 0.2rem 0.4rem;
        border-radius: 50%;
        min-width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
        animation: badge-pulse 2s ease-in-out infinite;
    }
    
    @keyframes badge-pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
    
    /* Additional header enhancements */
    .header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    }
    
    .header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    }
    
    /* Mobile menu button */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        padding: 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        transform: scale(1.1);
    }
    
    /* Header Actions */
    .header-actions {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    
    .action-btn {
        background: none;
        border: none;
        color: var(--text-light);
        font-family: var(--font-primary);
        font-weight: 600;
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        border-radius: var(--border-radius-sm);
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        overflow: hidden;
        border: 1px solid transparent;
    }
    
    .action-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .action-btn:hover::before {
        left: 100%;
    }
    
    .login-btn {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .login-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--text-light);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }
    
    .register-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-color: var(--primary-color);
        color: white;
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    }
    
    .register-btn:hover {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
        transform: translateY(-2px);
    }
    
    .btn-icon {
        font-size: 1rem;
        filter: drop-shadow(0 0 5px currentColor);
    }
    
    .btn-text {
        font-weight: 600;
        letter-spacing: 0.05em;
    }
    
    /* Header Status Bar */
    .header-status {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0.8rem 0;
        background: rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(99, 102, 241, 0.2);
        backdrop-filter: blur(5px);
    }

    @media (max-width: 768px) {
        .header-status {
            display: none;
        }
    }
    
    .status-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-light);
        font-family: var(--font-body);
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    .status-icon {
        font-size: 1rem;
        filter: drop-shadow(0 0 5px currentColor);
        animation: status-icon-glow 3s ease-in-out infinite;
    }
    
    @keyframes status-icon-glow {
        0%, 100% { filter: drop-shadow(0 0 5px currentColor); }
        50% { filter: drop-shadow(0 0 15px currentColor); }
    }
    
    .status-text {
        opacity: 0.9;
        letter-spacing: 0.02em;
    }
    
    /* Updated Mobile Menu Button */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger .line {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s ease;
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    }
    
    .mobile-menu-btn:hover .hamburger .line {
        background: var(--secondary-color);
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
    }
    
    .mobile-menu-btn:hover .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn:hover .hamburger .line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn:hover .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }
        
        .main-nav {
            display: none;
        }
        
        .header-actions {
            display: none;
        }
        
        .header-status {
            flex-direction: column;
            gap: 0.5rem;
            padding: 0.5rem 0;
        }
        
        .status-item {
            font-size: 0.8rem;
        }
        
        .logo-section {
            flex-direction: row;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-tagline {
            display: none;
        }
        
        .logo-orb {
            width: 50px;
            height: 50px;
        }
        
        .logo-main {
            font-size: 1.5rem;
        }
        
        .logo-sub {
            font-size: 1rem;
        }
        
        .hero h1 {
            font-size: 2.5rem;
        }
        
        .timer {
            gap: 1rem;
        }
        
        .timer-number {
            font-size: 2rem;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
    }
    
    /* Hero Section */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        color: var(--text-light);
        background: var(--background-dark);
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            linear-gradient(135deg, 
                rgba(0, 0, 0, 0.8) 0%, 
                rgba(26, 26, 26, 0.6) 50%, 
                rgba(0, 0, 0, 0.8) 100%),
            url('./favicon/playboard-165507318.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
    }
    
    .hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.3) 0%, transparent 50%);
        z-index: 2;
    }
    
    .floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
    
    .floating-element {
        position: absolute;
        font-size: 2rem;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }
    
    .floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
    .floating-element:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
    .floating-element:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }
    .floating-element:nth-child(4) { top: 30%; left: 70%; animation-delay: 3s; }
    .floating-element:nth-child(5) { top: 70%; left: 90%; animation-delay: 4s; }
    .floating-element:nth-child(6) { top: 10%; left: 50%; animation-delay: 5s; }
    
    /* Responsive floating elements */
    @media (max-width: 768px) {
        .floating-element {
            font-size: 1.5rem;
        }
        
        .floating-element:nth-child(1) { top: 15%; left: 5%; }
        .floating-element:nth-child(2) { top: 55%; left: 85%; }
        .floating-element:nth-child(3) { top: 75%; left: 15%; }
        .floating-element:nth-child(4) { top: 25%; left: 75%; }
        .floating-element:nth-child(5) { top: 65%; left: 95%; }
        .floating-element:nth-child(6) { top: 5%; left: 45%; }
    }
    
    @media (max-width: 480px) {
        .floating-element {
            font-size: 1.2rem;
            opacity: 0.05;
        }
        
        .floating-element:nth-child(1) { top: 10%; left: 2%; }
        .floating-element:nth-child(2) { top: 50%; left: 90%; }
        .floating-element:nth-child(3) { top: 70%; left: 10%; }
        .floating-element:nth-child(4) { top: 20%; left: 80%; }
        .floating-element:nth-child(5) { top: 60%; left: 98%; }
        .floating-element:nth-child(6) { top: 2%; left: 40%; }
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }
    
    /* Responsive hero section */
    @media (max-width: 1200px) {
        .hero-background {
            background-size: 120% auto;
            background-position: center center;
        }
        
        .hero-background::before {
            background-size: 120% auto;
        }
    }
    
    @media (max-width: 992px) {
        .hero-background {
            background-size: 140% auto;
            background-position: center center;
        }
        
        .hero-background::before {
            background-size: 140% auto;
        }
    }
    
    @media (max-width: 768px) {
        .hero {
            min-height: auto;
            padding: 1.5rem 0;
            overflow: hidden;
        }
        
        .hero-background {
            background-attachment: scroll;
            background-size: 160% auto;
            background-position: center center;
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .hero-background::before {
            background-size: 160% auto;
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .floating-elements {
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    
    @media (max-width: 480px) {
        .hero {
            padding: 1rem 0;
            overflow: hidden;
        }
        
        .hero-background {
            background-size: 200% auto;
            background-position: center center;
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .hero-background::before {
            background-size: 200% auto;
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .floating-elements {
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    
    @media (max-width: 360px) {
        .hero-background {
            background-size: 250% auto;
        }
        
        .hero-background::before {
            background-size: 250% auto;
        }
    }
    
    @media (max-width: 320px) {
        .hero-background {
            background-size: 300% auto;
        }
        
        .hero-background::before {
            background-size: 300% auto;
        }
        
        .floating-elements {
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .floating-element {
            font-size: 1rem;
            opacity: 0.03;
        }
        
        .floating-element:nth-child(1) { top: 8%; left: 1%; }
        .floating-element:nth-child(2) { top: 45%; left: 92%; }
        .floating-element:nth-child(3) { top: 65%; left: 8%; }
        .floating-element:nth-child(4) { top: 15%; left: 85%; }
        .floating-element:nth-child(5) { top: 55%; left: 99%; }
        .floating-element:nth-child(6) { top: 1%; left: 35%; }
    }
    
    /* Landscape orientation adjustments */
    @media (orientation: landscape) and (max-height: 600px) {
        .hero-background {
            background-size: 120% auto;
        }
        
        .hero-background::before {
            background-size: 120% auto;
        }
    }
    
    /* High DPI displays */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .hero-background {
            background-size: 100% auto;
        }
        
        .hero-background::before {
            background-size: 100% auto;
        }
    }
    
    /* Touch device optimizations */
    @media (hover: none) and (pointer: coarse) {
        .hero-background {
            background-attachment: scroll;
        }
        
        .floating-elements {
            pointer-events: none;
        }
        
        .hero {
            min-height: 80vh;
        }
    }
    
    /* Ultra-wide screen support */
    @media (min-width: 1400px) {
        .hero-background {
            background-size: 100% auto;
        }
        
        .hero-background::before {
            background-size: 100% auto;
        }
    }
    
    /* Very small height screens */
    @media (max-height: 500px) {
        .hero {
            min-height: 100vh;
            padding: 1rem 0;
        }
        
        .hero-background {
            background-size: 150% auto;
        }
        
        .hero-background::before {
            background-size: 150% auto;
        }
    }
    
    /* Reduced motion preferences */
    @media (prefers-reduced-motion: reduce) {
        .hero-background::before {
            animation: none;
        }
        
        .floating-element {
            animation: none;
        }
    }
    
    /* Print styles for hero section */
    @media print {
        .hero-background {
            background: none !important;
        }
        
        .hero-background::before {
            display: none;
        }
        
        .floating-elements {
            display: none;
        }
    }
    
    .hero .container {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        overflow: hidden;
    }
    
    @media (max-width: 768px) {
        .hero .container {
            padding: 0 1rem;
            max-width: 100vw;
        }
    }
    
    @media (max-width: 480px) {
        .hero .container {
            padding: 0 0.75rem;
            max-width: 100vw;
        }
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        max-width: 1200px;
        margin: 8rem auto 0;
        padding: 4rem 2rem;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-size: 0.9rem;
        margin-bottom: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .badge-icon {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 4rem;
        font-weight: 900;
        font-family: var(--font-heading);
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    }
    
    .title-line {
        display: block;
        color: var(--primary-color);
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
    }
    
    .title-highlight {
        display: block;
        background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 4.5rem;
        margin: 0.5rem 0;
        text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
    }
    
    .hero-description {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        opacity: 0.9;
        max-width: 500px;
    }
    
    .hero-stats {
        display: flex;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        font-family: var(--font-primary);
        color: var(--primary-color);
        display: block;
        text-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: var(--text-light);
        margin-top: 0.25rem;
        opacity: 0.8;
    }
    
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .countdown-card {
        background: rgba(26, 26, 26, 0.8);
        backdrop-filter: blur(20px);
        border-radius: var(--border-radius-lg);
        padding: 2.5rem;
        border: 2px solid var(--primary-color);
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
        max-width: 400px;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .countdown-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
        animation: scanline 3s linear infinite;
    }
    
    .countdown-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .countdown-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--text-light);
        font-family: var(--font-heading);
    }
    
    .prize-pool {
        font-size: 2.2rem;
        font-weight: 700;
        font-family: var(--font-primary);
        color: var(--accent-color);
        text-shadow: 0 0 20px var(--accent-color);
    }
    
    .countdown-timer {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .timer-item {
        text-align: center;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        border-radius: var(--border-radius-md);
        padding: 0.2rem;
        min-width: 80px;
        border: 1px solid var(--primary-color);
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
    }
    
    .timer-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--primary-color);
        animation: pulse 2s ease-in-out infinite;
    }
    
    .timer-number {
        font-size: 2.2rem;
        font-weight: 700;
        font-family: var(--font-primary);
        color: var(--primary-color);
        display: block;
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
    }
    
    .timer-label {
        font-size: 0.8rem;
        color: var(--text-light);
        margin-top: 0.25rem;
        font-family: var(--font-body);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .timer-separator {
        font-size: 2rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.6);
        margin: 0 0.5rem;
    }
    
    .countdown-actions {
        display: flex;
        gap: 1rem;
        flex-direction: column;
    }
    
    .primary-cta {
        display: block;
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        color: var(--text-light);
        padding: 1.2rem 2.5rem;
        text-decoration: none;
        border-radius: var(--border-radius-sm);
        font-weight: 600;
        font-family: var(--font-primary);
        font-size: 1.1rem;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
        border: 2px solid var(--primary-color);
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }
    
    .primary-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .primary-cta:hover::before {
        left: 100%;
    }
    
    .primary-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
        text-decoration: none;
        color: var(--text-light);
        border-color: var(--secondary-color);
    }
    
    .secondary-cta {
        display: block;
        background: transparent;
        color: var(--primary-color);
        padding: 1.2rem 2.5rem;
        text-decoration: none;
        border-radius: var(--border-radius-sm);
        font-weight: 600;
        font-family: var(--font-primary);
        font-size: 1rem;
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid var(--primary-color);
        position: relative;
        overflow: hidden;
    }
    
    .secondary-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: var(--primary-color);
        transition: width 0.3s ease;
        z-index: -1;
    }
    
    .secondary-cta:hover::before {
        width: 100%;
    }
    
    .secondary-cta:hover {
        background: var(--primary-color);
        color: var(--background-dark);
        transform: translateY(-2px);
        text-decoration: none;
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }
    
    /* Features Section */
    .features {
        padding: 80px 0;
        background: var(--background-light);
        position: relative;
    }
    
    .features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    }
    
    .section-title {
        text-align: center;
        font-size: 3rem;
        font-weight: 900;
        font-family: var(--font-heading);
        margin-bottom: 3rem;
        color: var(--text-light);
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
    }
    @media (max-width: 768px) {
        .section-title {
            font-size: 1.2rem;
        }
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .feature-card {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        border: 1px solid var(--border-color);
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(45deg, var(--accent-secondary), var(--accent-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        color: white;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }
    
    .feature-card p {
        color: var(--text-dark);
        line-height: 1.6;
    }
    
    /* Game Types Section - Completely Redesigned */
    .game-types {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .game-types::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }
    
    .game-types .container {
        position: relative;
        z-index: 2;
    }
    
    .game-types .section-title {
        color: white;
        text-align: center;
        margin-bottom: 3rem;
        font-size: 2.5rem;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .game-tabs {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 4rem;
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    
    .tab-button {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        padding: 16px 32px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1.1rem;
        color: white;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        min-width: 160px;
        text-align: center;
    }
    
    .tab-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }
    
    .tab-button:hover::before {
        left: 100%;
    }
    
    .tab-button:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    
    .tab-button.active {
        background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
        border-color: var(--accent-secondary);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
        transform: translateY(-2px);
    }
    
    .tab-content {
        display: none;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 3rem;
        border-radius: 25px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }
    
            .tab-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-secondary), var(--accent-color), var(--secondary-color));
        }
    
    .tab-content.active {
        display: block;
        animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .form-group {
        margin-bottom: 2rem;
        position: relative;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.75rem;
        font-weight: 600;
        color: var(--text-dark);
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Modern Select Styling */
    .form-group select {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid var(--border-color);
        border-radius: 15px;
        font-size: 1rem;
        font-weight: 500;
        background: white;
        color: var(--text-dark);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 12px center;
        background-repeat: no-repeat;
        background-size: 16px;
        padding-right: 50px;
    }
    
    .form-group select:hover {
        border-color: var(--accent-secondary);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
    }
    
    .form-group select:focus {
        outline: none;
        border-color: var(--accent-secondary);
        box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
        transform: translateY(-1px);
    }
    
    /* Modern Checkbox Styling */
    .form-group input[type="checkbox"] {
        appearance: none;
        width: 24px;
        height: 24px;
        border: 2px solid var(--border-color);
        border-radius: 6px;
        background: white;
        cursor: pointer;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-right: 12px;
        vertical-align: middle;
    }
    
    .form-group input[type="checkbox"]:checked {
        background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
        border-color: var(--accent-secondary);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    }
    
    .form-group input[type="checkbox"]:checked::after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 14px;
        font-weight: bold;
    }
    
    .form-group input[type="checkbox"]:hover {
        border-color: var(--primary-color);
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
    }
    
    /* Modern Radio Button Styling */
    .form-group input[type="radio"] {
        appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid var(--border-color);
        border-radius: 50%;
        background: white;
        cursor: pointer;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-right: 12px;
        vertical-align: middle;
    }
    
    .form-group input[type="radio"]:checked {
        border-color: var(--accent-secondary);
        background: white;
    }
    
    .form-group input[type="radio"]:checked::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
        border-radius: 50%;
    }
    
    .form-group input[type="radio"]:hover {
        border-color: var(--accent-secondary);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
    }
    
    /* Radio Button Labels */
    .form-group label:has(input[type="radio"]) {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 12px 16px;
        background: rgba(139, 92, 246, 0.05);
        border-radius: 12px;
        border: 2px solid transparent;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: 0.5rem;
    }
    
    .form-group label:has(input[type="radio"]:checked) {
        background: rgba(139, 92, 246, 0.1);
        border-color: var(--accent-secondary);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
    }
    
    .form-group label:has(input[type="radio"]:hover) {
        background: rgba(139, 92, 246, 0.08);
        border-color: rgba(139, 92, 246, 0.3);
    }
    
    /* Price Display Redesign */
    .price-display {
        background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
        color: white;
        padding: 1.5rem 2rem;
        border-radius: 20px;
        text-align: center;
        font-size: 1.4rem;
        font-weight: 700;
        margin: 2rem 0;
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    }
    
    .price-display::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: shimmer 2s infinite;
    }
    
    @keyframes shimmer {
        0% { left: -100%; }
        100% { left: 100%; }
    }
    
    /* Add to Cart Button Redesign */
    .add-to-cart {
        background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
        color: white;
        padding: 18px 40px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    }
    
    .add-to-cart::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }
    
    .add-to-cart:hover::before {
        left: 100%;
    }
    
    .add-to-cart:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
    }
    
    .add-to-cart:active {
        transform: translateY(-1px);
    }
    
    /* Responsive Styles for Games Section */
    @media (max-width: 768px) {
        .game-types {
            padding: 60px 0;
        }
        
        .game-types .section-title {
            font-size: 2rem;
            margin-bottom: 2rem;
        }
        
        .game-tabs {
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .tab-button {
            padding: 14px 24px;
            font-size: 1rem;
            min-width: 140px;
        }
        
        .tab-content {
            padding: 2rem;
            border-radius: 20px;
        }
        
        .form-group label {
            font-size: 1rem;
        }
        
        .form-group select {
            padding: 14px 16px;
            font-size: 0.95rem;
        }
        
        .price-display {
            padding: 1.25rem 1.5rem;
            font-size: 1.2rem;
        }
        
        .add-to-cart {
            padding: 16px 32px;
            font-size: 1rem;
        }
    }
    
    @media (max-width: 480px) {
        .game-types {
            padding: 40px 0;
        }
        
        .game-types .section-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        .game-tabs {
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }
        
        .tab-button {
            padding: 12px 20px;
            font-size: 0.95rem;
            min-width: auto;
            width: 100%;
        }
        
        .tab-content {
            padding: 1.5rem;
            border-radius: 15px;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }
        
        .form-group select {
            padding: 12px 14px;
            font-size: 0.9rem;
        }
        
        .form-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
        }
        
        .form-group input[type="radio"] {
            width: 18px;
            height: 18px;
        }
        
        .price-display {
            padding: 1rem 1.25rem;
            font-size: 1.1rem;
            margin: 1.5rem 0;
        }
        
        .add-to-cart {
            padding: 14px 28px;
            font-size: 0.95rem;
        }
    }
    
    /* Results Section */
    .results {
        padding: 80px 0;
        background: white;
    }
    
    .results-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .winning-numbers {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 2rem 0;
        flex-wrap: wrap;
    }
    
    .number-ball {
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, #8B5CF6, #EC4899);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 1.2rem;
    }
    
    .number-ball.bonus {
        background: linear-gradient(45deg, var(--secondary-color), var(--secondary-color));
    }
    
    /* Footer */
    .footer {
        background: var(--background-dark);
        color: white;
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section h3 {
        margin-bottom: 1rem;
        color: var(--accent-secondary);
    }
    
    .footer-section p,
    .footer-section a {
        color: var(--text-light);
        text-decoration: none;
        line-height: 1.6;
    }
    
    .footer-section a:hover {
        color: var(--accent-secondary);
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid var(--border-color);
        color: var(--text-dark);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .hero {
            min-height: auto;
            padding: 80px 0;
        }
        
        .hero-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
            margin-top: 0;
            padding: 2rem 0;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .title-highlight {
            font-size: 3rem;
        }
        
        .hero-stats {
            justify-content: center;
            gap: 1.5rem;
        }
        
        .countdown-card {
            max-width: 100%;
            padding: 5px;
        }
        
        .countdown-timer {
            gap: 0.5rem;
        }
        
        .timer-item {
            min-width: 60px;
            padding: 0.75rem;
        }
        
        .timer-number {
            font-size: 1.5rem;
        }
        
        .timer-separator {
            font-size: 1.5rem;
        }
        
        .nav-menu {
            display: none;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 480px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .title-highlight {
            font-size: 2.5rem;
        }
        
        .hero-stats {
            flex-direction: column;
            gap: 1rem;
        }
        
        .countdown-timer {
            flex-wrap: wrap;
            gap: 0.25rem;
        }
        
        .timer-item {
            min-width: 50px;
            padding: 0.5rem;
        }
        
        .timer-number {
            font-size: 1.2rem;
        }
        
        .timer-label {
            font-size: 0.7rem;
        }
        
        .timer-separator {
            font-size: 1.2rem;
        }
        
        .countdown-actions {
            gap: 0.75rem;
        }
        
        .primary-cta,
        .secondary-cta {
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
        }
    }
    
    /* Age Verification Modal */
    .age-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000;
    }
    
    .age-modal-content {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        max-width: 400px;
        margin: 20px;
    }
    
    .age-modal h2 {
        margin-bottom: 1rem;
        color: var(--text-dark);
    }
    
    .age-modal p {
        margin-bottom: 2rem;
        color: var(--text-dark);
    }
    
    .age-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }
    
    .age-btn {
        padding: 10px 20px;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .age-confirm {
        background: linear-gradient(45deg, var(--accent-secondary), var(--accent-color));
        color: white;
    }
    
    .age-decline {
        background: var(--hover-bg);
        color: var(--text-dark);
    }
    
    .age-btn:hover {
        transform: translateY(-2px);
    }

    /* ========================================
       Cart Styles
       ======================================== */

    /* Cart Notification */
    .cart-notification {
      position: fixed;
      top: 100px;
      right: 20px;
      z-index: 10000;
      background: var(--card-bg);
      border: 2px solid var(--primary-color);
      border-radius: 12px;
      box-shadow: var(--shadow-glow);
      animation: slideInFromRight 0.3s ease-out;
      max-width: 350px;
      backdrop-filter: blur(10px);
    }

    .notification-content {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px;
      position: relative;
    }

    .notification-icon {
      font-size: 20px;
      color: var(--secondary-color);
    }

    .notification-text {
      flex: 1;
      color: var(--text-dark);
      font-weight: 500;
      font-size: 14px;
    }

    .notification-close {
      background: none;
      border: none;
      color: var(--text-dark);
      font-size: 20px;
      cursor: pointer;
      padding: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.2s ease;
    }

    .notification-close:hover {
      background: var(--hover-bg);
      color: var(--accent-tertiary);
    }

    /* Cart Items */
    .cart-item {
      background: var(--card-bg);
      border: 2px solid var(--border-color);
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-light);
    }

    .cart-item:hover {
      border-color: var(--primary-color);
      box-shadow: var(--shadow-medium);
      transform: translateY(-2px);
    }

    .cart-item-info {
      flex: 1;
      min-width: 0;
    }

    .cart-item-name {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 8px;
      font-family: 'Orbitron', sans-serif;
    }

    .cart-item-details {
      font-size: 14px;
      color: var(--text-dark);
      margin-bottom: 6px;
      opacity: 0.8;
    }

    .cart-item-date {
      font-size: 12px;
      color: var(--text-dark);
      opacity: 0.6;
      font-style: italic;
    }

    .cart-item-controls {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      min-width: 120px;
    }

    .quantity-controls {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--background-light);
      border-radius: 20px;
      padding: 4px;
      border: 1px solid var(--border-color);
    }

    .quantity-btn {
      background: var(--primary-color);
      color: var(--text-light);
      border: none;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
      transition: all 0.2s ease;
    }

    .quantity-btn:hover {
      background: var(--accent-secondary);
      transform: scale(1.1);
    }

    .quantity-btn:active {
      transform: scale(0.95);
    }

    .quantity-display {
      min-width: 30px;
      text-align: center;
      font-weight: 600;
      color: var(--text-dark);
      font-size: 16px;
    }

    .cart-item-price {
      font-size: 18px;
      font-weight: 700;
      color: var(--primary-color);
      font-family: 'Orbitron', sans-serif;
    }

    .remove-item-btn {
      background: var(--accent-tertiary);
      color: var(--text-light);
      border: none;
      border-radius: 8px;
      padding: 8px 4px;
      cursor: pointer;
      font-size: 14px;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .remove-item-btn:hover {
      background: #dc2626;
      transform: translateY(-1px);
    }

    /* Cart Summary */
    .cart-summary {
      background: var(--card-bg);
      border: 2px solid var(--primary-color);
      border-radius: 16px;
      padding: 24px;
      margin-top: 24px;
      box-shadow: var(--shadow-glow);
    }

    .cart-summary-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 2px solid var(--border-color);
    }

    .cart-summary-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--text-dark);
      font-family: 'Orbitron', sans-serif;
    }

    .cart-total {
      font-size: 28px;
      font-weight: 900;
      color: var(--primary-color);
      font-family: 'Orbitron', sans-serif;
    }

    .cart-actions {
      display: flex;
      gap: 16px;
      margin-top: 20px;
    }

    .cart-action-btn {
      flex: 1;
      padding: 16px 24px;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Orbitron', sans-serif;
      text-decoration: none;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .checkout-btn {
      background: linear-gradient(135deg, var(--primary-color), var(--accent-secondary));
      color: var(--text-light);
      box-shadow: var(--shadow-glow);
    }

    .checkout-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    }

    .clear-cart-btn {
      background: var(--background-light);
      color: var(--text-dark);
      border: 2px solid var(--border-color);
    }

    .clear-cart-btn:hover {
      background: var(--accent-tertiary);
      color: var(--text-light);
      border-color: var(--accent-tertiary);
    }

    /* Empty Cart Message */
    .empty-cart-message {
      text-align: center;
      padding: 60px 20px;
      background: var(--card-bg);
      border: 2px dashed var(--border-color);
      border-radius: 16px;
      margin: 40px 0;
    }

    .empty-cart-icon {
      font-size: 64px;
      margin-bottom: 20px;
      opacity: 0.5;
    }

    .empty-cart-title {
      font-size: 24px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 12px;
      font-family: 'Orbitron', sans-serif;
    }

    .empty-cart-text {
      font-size: 16px;
      color: var(--text-dark);
      opacity: 0.7;
      margin-bottom: 24px;
    }

    .empty-cart-cta {
      display: inline-block;
      background: linear-gradient(135deg, var(--primary-color), var(--accent-secondary));
      color: var(--text-light);
      padding: 16px 32px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-family: 'Orbitron', sans-serif;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-glow);
    }

    .empty-cart-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    }

    /* Cart Badge Updates */
    .basket-badge, .mobile-basket-badge {
      background: var(--accent-tertiary);
      color: var(--text-light);
      border-radius: 50%;
      min-width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      position: absolute;
      top: -8px;
      right: -8px;
      animation: badgePulse 2s infinite;
    }

    /* Cart Page Specific Styles */
    .cart-page-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .cart-page-title {
      font-size: 36px;
      font-weight: 900;
      color: var(--text-dark);
      margin-bottom: 16px;
      font-family: 'Orbitron', sans-serif;
      background: linear-gradient(135deg, var(--primary-color), var(--accent-secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cart-page-subtitle {
      font-size: 18px;
      color: var(--text-dark);
      opacity: 0.7;
      font-family: 'Exo 2', sans-serif;
    }

    /* Cart Item Animations */
    @keyframes slideInFromRight {
      from {
        transform: translateX(100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    @keyframes badgePulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
    }

    /* Responsive Cart Design */
    @media (max-width: 768px) {
      .cart-notification {
        right: 10px;
        left: 10px;
        max-width: none;
      }
      
      .cart-item {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
      }
      
      .cart-item-controls {
        flex-direction: row;
        justify-content: space-between;
        min-width: auto;
      }
      
      .cart-actions {
        flex-direction: column;
      }
      
      .cart-page-title {
        font-size: 28px;
      }
      
      .cart-page-subtitle {
        font-size: 16px;
      }
    }

    @media (max-width: 480px) {
      .cart-item {
        padding: 16px;
      }
      
      .cart-item-name {
        font-size: 16px;
      }
      
      .cart-item-details {
        font-size: 13px;
      }
      
      .quantity-controls {
        gap: 6px;
      }
      
      .quantity-btn {
        width: 24px;
        height: 24px;
        font-size: 14px;
      }
      
      .cart-item-price {
        font-size: 16px;
      }
    }

    /* Cart Loading States */
    .cart-loading {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
      color: var(--text-dark);
      opacity: 0.7;
    }

    .cart-loading::after {
      content: '';
      width: 20px;
      height: 20px;
      border: 2px solid var(--border-color);
      border-top: 2px solid var(--primary-color);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-left: 12px;
    }

    /* Cart Success States */
    .cart-success {
      background: linear-gradient(135deg, var(--secondary-color), var(--accent-secondary));
      color: var(--text-light);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      margin: 24px 0;
      box-shadow: var(--shadow-glow);
    }

    .cart-success-icon {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .cart-success-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
      font-family: 'Orbitron', sans-serif;
    }

    .cart-success-text {
      font-size: 16px;
      opacity: 0.9;
    }

    /* Continue Shopping Section */
    .continue-shopping {
      text-align: center;
      margin: 40px 0;
      padding: 40px 20px;
      background: var(--card-bg);
      border: 2px dashed var(--border-color);
      border-radius: 16px;
    }

    .continue-shopping-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, var(--primary-color), var(--accent-secondary));
      color: var(--text-light);
      padding: 16px 32px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      font-family: 'Orbitron', sans-serif;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-glow);
    }

    .continue-shopping-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    }

    /* Main Content Area */
    .main-content {
      padding: 120px 0 60px 0;
      min-height: calc(100vh - 200px);
      background: var(--background-light);
    }

    .cart-section {
      max-width: 800px;
      margin: 0 auto;
    }

    /* Loading State for Cart */
    .cart-loading {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 60px 20px;
      color: var(--text-dark);
      opacity: 0.7;
    }

    .cart-loading::after {
      content: '';
      width: 30px;
      height: 30px;
      border: 3px solid var(--border-color);
      border-top: 3px solid var(--primary-color);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-left: 16px;
    }

    /* Cart Item Hover Effects */
    .cart-item {
      position: relative;
      overflow: hidden;
    }

    .cart-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .cart-item:hover::before {
      left: 100%;
    }

    /* Enhanced Button Animations */
    .cart-action-btn {
      position: relative;
      overflow: hidden;
    }

    .cart-action-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .cart-action-btn:hover::before {
      left: 100%;
    }

    /* Responsive Enhancements */
    @media (max-width: 768px) {
      .main-content {
        padding: 100px 0 40px 0;
      }
      
      .cart-section {
        padding: 0 20px;
      }
      
      .continue-shopping {
        margin: 30px 0;
        padding: 30px 20px;
      }
      
      .continue-shopping-btn {
        padding: 14px 28px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .main-content {
        padding: 90px 0 30px 0;
      }
      
      .cart-section {
        padding: 0 15px;
      }
      
      .continue-shopping {
        margin: 25px 0;
        padding: 25px 15px;
      }
      
      .continue-shopping-btn {
        padding: 12px 24px;
        font-size: 13px;
      }
    }

    /* Mobile Navigation Styles */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-gradient) 100%);
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }

    .mobile-nav-overlay.active {
        left: 0;
    }

    .mobile-nav-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .mobile-grid {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: gridMove 20s linear infinite;
    }

    .mobile-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    }

    @keyframes gridMove {
        0% { transform: translate(0, 0); }
        100% { transform: translate(50px, 50px); }
    }

    .mobile-nav-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 2rem;
        cursor: pointer;
        padding: 0.5rem;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .mobile-nav-close:hover {
        color: var(--secondary-color);
        transform: scale(1.1);
    }

    .close-icon {
        display: block;
        font-weight: bold;
    }

    .mobile-nav-content {
        position: relative;
        z-index: 5;
        padding: 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-header {
        text-align: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 0.5rem;
    }

    .mobile-logo-orb {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
        animation: logoOrbGlow 3s ease-in-out infinite;
    }

    @keyframes logoOrbGlow {
        0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.5); }
        50% { box-shadow: 0 0 30px rgba(99, 102, 241, 0.8); }
    }

    .mobile-logo-icon {
        font-size: 1.5rem;
        filter: drop-shadow(0 0 5px currentColor);
    }

    .mobile-logo-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-logo-main {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--primary-color);
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    }

    .mobile-logo-sub {
        font-family: var(--font-primary);
        font-size: 0.9rem;
        color: var(--secondary-color);
        letter-spacing: 0.1em;
    }

    .mobile-nav-subtitle {
        font-family: var(--font-body);
        font-size: 0.9rem;
        color: var(--text-light);
        opacity: 0.8;
        font-style: italic;
    }

    .mobile-nav-menu {
        flex: 1;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-item {
        margin-bottom: 1rem;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--text-light);
        text-decoration: none;
        padding: 1rem;
        border-radius: var(--border-radius-md);
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .mobile-nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .mobile-nav-link:hover::before {
        left: 100%;
    }

    .mobile-nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-color);
        transform: translateX(10px);
        box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
    }

    .mobile-nav-icon {
        font-size: 1.5rem;
        filter: drop-shadow(0 0 5px currentColor);
        transition: all 0.3s ease;
    }

    .mobile-nav-link:hover .mobile-nav-icon {
        transform: scale(1.1);
        filter: drop-shadow(0 0 10px currentColor);
    }

    .mobile-nav-text {
        font-family: var(--font-primary);
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .mobile-nav-link:hover .mobile-nav-text {
        color: var(--secondary-color);
    }

    /* Hide Login and Join Now buttons in mobile menu */
    .mobile-nav-footer {
        display: none !important;
    }

    .mobile-login-btn,
    .mobile-register-btn {
        display: none !important;
    }

    /* Mobile Navigation Responsive */
    @media (max-width: 768px) {
        .mobile-nav-overlay {
            width: 100%;
        }
        
        .mobile-nav-content {
            padding: 1.5rem;
        }
        
        .mobile-nav-header {
            margin-bottom: 1.5rem;
        }
        
        .mobile-logo-orb {
            width: 45px;
            height: 45px;
        }
        
        .mobile-logo-main {
            font-size: 1.3rem;
        }
        
        .mobile-logo-sub {
            font-size: 0.8rem;
        }
        
        .mobile-nav-link {
            padding: 0.8rem;
        }
        
        .mobile-nav-text {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .mobile-nav-content {
            padding: 1rem;
        }
        
        .mobile-nav-header {
            margin-bottom: 1rem;
        }
        
        .mobile-logo-orb {
            width: 40px;
            height: 40px;
        }
        
        .mobile-logo-main {
            font-size: 1.2rem;
        }
        
        .mobile-logo-sub {
            font-size: 0.7rem;
        }
        
        .mobile-nav-link {
            padding: 0.7rem;
        }
        
        .mobile-nav-text {
            font-size: 0.9rem;
        }
    }

    /* Manual Number Selection Styles */
    .number-grid {
      display: grid;
      grid-template-columns: repeat(9, 1fr);
      gap: 0.5rem;
      margin: 1rem 0;
      max-width: 500px;
    }

    .number-btn {
      width: 40px;
      height: 40px;
      border: 2px solid var(--primary-color);
      background: var(--card-bg);
      color: var(--primary-color);
      border-radius: 50%;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .number-btn:hover {
      background: var(--primary-color);
      color: var(--text-light);
      transform: scale(1.1);
    }

    .number-btn.selected {
      background: var(--secondary-color);
      border-color: var(--secondary-color);
      color: var(--text-light);
      transform: scale(1.1);
    }

    .selected-numbers {
      margin-top: 1rem;
      padding: 1rem;
      background: var(--background-light);
      border-radius: var(--border-radius-md);
      border: 1px solid var(--border-color);
    }

    .selected-numbers p {
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: var(--text-dark);
    }

    .clear-btn {
      background: var(--accent-tertiary);
      color: var(--text-light);
      border: none;
      padding: 0.5rem 1rem;
      border-radius: var(--border-radius-md);
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .clear-btn:hover {
      background: #dc2626;
      transform: translateY(-2px);
    }

    /* Cart Notification Styles */
    .cart-notification {
      position: fixed;
      top: 20px;
      right: 20px;
      background: var(--secondary-color);
      color: var(--text-light);
      padding: 1rem;
      border-radius: var(--border-radius-md);
      box-shadow: var(--shadow-medium);
      z-index: 1000;
      animation: slideInRight 0.3s ease;
    }

    .notification-content {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .notification-icon {
      font-size: 1.2rem;
    }

    .notification-text {
      font-weight: 600;
    }

    .notification-close {
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 1.5rem;
      cursor: pointer;
      margin-left: 1rem;
      padding: 0;
      line-height: 1;
    }

    .notification-close:hover {
      opacity: 0.8;
    }

    @keyframes slideInRight {
      from {
        transform: translateX(100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    /* Cart Item Styles */
    .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      margin-bottom: 1rem;
      background: var(--card-bg);
      border-radius: var(--border-radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-light);
    }

    .cart-item-info {
      flex: 1;
    }

    .cart-item-name {
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 0.25rem;
    }

    .cart-item-details {
      color: var(--text-dark);
      opacity: 0.8;
      font-size: 0.9rem;
      margin-bottom: 0.25rem;
    }

    .cart-item-date {
      color: var(--primary-color);
      font-size: 0.8rem;
      font-weight: 600;
    }

    .cart-item-controls {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .quantity-controls {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .quantity-btn {
      width: 30px;
      height: 30px;
      border: 1px solid var(--border-color);
      background: var(--card-bg);
      color: var(--text-dark);
      border-radius: var(--border-radius-sm);
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .quantity-btn:hover {
      background: var(--primary-color);
      color: var(--text-light);
      border-color: var(--primary-color);
    }

    .quantity-display {
      min-width: 30px;
      text-align: center;
      font-weight: 600;
      color: var(--text-dark);
    }

    .cart-item-price {
      font-weight: 600;
      color: var(--secondary-color);
      font-size: 1.1rem;
    }

    .remove-item-btn {
      background: var(--accent-tertiary);
      color: var(--text-light);
      border: none;
      width: 30px;
      height: 30px;
      border-radius: var(--border-radius-sm);
      cursor: pointer;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .remove-item-btn:hover {
      background: #dc2626;
      transform: scale(1.1);
    }

    /* Cart Summary Styles */
    .cart-summary {
      background: var(--card-bg);
      padding: 1.5rem;
      border-radius: var(--border-radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-light);
      margin-top: 2rem;
    }

    .cart-summary-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border-color);
    }

    .cart-summary-title {
      font-size: 1.5rem;
      color: var(--text-dark);
      margin: 0;
    }

    .cart-total {
      font-size: 2rem;
      font-weight: 700;
      color: var(--secondary-color);
    }

    .cart-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cart-action-btn {
      flex: 1;
      min-width: 200px;
      padding: 1rem 2rem;
      border: none;
      border-radius: var(--border-radius-md);
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .checkout-btn {
      background: var(--secondary-color);
      color: var(--text-light);
    }

    .checkout-btn:hover {
      background: #059669;
      transform: translateY(-2px);
      box-shadow: var(--shadow-medium);
    }

    .clear-cart-btn {
      background: var(--accent-tertiary);
      color: var(--text-light);
    }

    .clear-cart-btn:hover {
      background: #dc2626;
      transform: translateY(-2px);
      box-shadow: var(--shadow-medium);
    }

    /* Empty Cart Styles */
    .empty-cart-message {
      text-align: center;
      padding: 3rem 1rem;
      background: var(--card-bg);
      border-radius: var(--border-radius-md);
      border: 1px solid var(--border-color);
    }

    .empty-cart-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
      opacity: 0.5;
    }

    .empty-cart-title {
      font-size: 1.5rem;
      color: var(--text-dark);
      margin-bottom: 1rem;
    }

    .empty-cart-text {
      color: var(--text-dark);
      opacity: 0.8;
      margin-bottom: 2rem;
    }

    .empty-cart-cta {
      display: inline-block;
      background: var(--primary-color);
      color: var(--text-light);
      padding: 1rem 2rem;
      border-radius: var(--border-radius-md);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .empty-cart-cta:hover {
      background: var(--background-gradient);
      transform: translateY(-2px);
      box-shadow: var(--shadow-medium);
    }

    /* Continue Shopping Styles */
    .continue-shopping {
      text-align: center;
      margin-top: 2rem;
    }

    .continue-shopping-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--accent-secondary);
      color: var(--text-light);
      padding: 1rem 2rem;
      border-radius: var(--border-radius-md);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .continue-shopping-btn:hover {
      background: #7c3aed;
      transform: translateY(-2px);
      box-shadow: var(--shadow-medium);
    }

    /* Cart Loading Styles */
    .cart-loading {
      text-align: center;
      padding: 2rem;
      color: var(--text-dark);
      opacity: 0.7;
      font-style: italic;
    }


