/* General Resets & Base Styles */
:root {
    /* Color Palette - Modern & Engaging (Example: Ocean Blues, Sunset Oranges, Neutral Greys) */
    --primary-color: #007bff; /* Deep Blue - for main buttons, accents */
    --secondary-color: #ff9800; /* Vibrant Orange - for highlights, active states */
    --accent-color: #28a745; /* Green - for success messages, positive actions */
    --text-dark: #343a40; /* Dark Grey - for main body text */
    --text-light: #f8f9fa; /* Off-White - for text on dark backgrounds */
    --background-light: #ffffff; /* Pure White - for main content areas */
    --background-dark: #20232a; /* Dark Grey/Blue - for header, footer */
    --border-color: #dee2e6; /* Light Grey - for borders, dividers */

    /* Typography */
    --font-primary: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Montserrat', sans-serif; /* A more distinct font for headings */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;

    /* Box Shadow */
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 12px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
      /* 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: 'Inter', sans-serif;
        line-height: 1.6;
        color: #333;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Header Styles */
    .header {
        background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff6b6b);
        background-size: 200% 200%;
        animation: gradientShift 3s ease infinite;
        padding: 1rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 8px 40px rgba(255, 107, 107, 0.3);
        border-bottom: 4px solid rgba(255, 255, 255, 0.2);
    }
    
    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .logo {
        font-size: 2.5rem;
        font-weight: 900;
        color: white;
        text-decoration: none;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .logo::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #fff, transparent);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .logo:hover::after {
        transform: scaleX(1);
    }
    
    .logo-icon {
        font-size: 2rem;
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-10px); }
        60% { transform: translateY(-5px); }
    }
    
    .nav-menu {
        display: flex;
        gap: 2rem;
        align-items: center;
        margin: 0;
        padding: 0;
        list-style: none;
        list-style-type: none;
    }
    
    .nav-menu li {
        position: relative;
        list-style: none;
        list-style-type: none;
    }
    
    .nav-menu a {
        text-decoration: none;
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0.5rem 0.8rem;
        border-radius: 30px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.4s ease;
        z-index: -1;
    }
    
    .nav-menu a:hover::before {
        width: 100%;
        height: 100%;
    }
    
    .nav-menu a:hover {
        color: white;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu a.active {
        background: rgba(255, 255, 255, 0.25);
        border: 2px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu a.active::before {
        display: none;
    }
    
    /* 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);
    }
    
    @media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(45deg, #ff6b6b, #ee5a24);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu a {
        padding: 1.2rem 2rem;
        width: 100%;
        text-align: center;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .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: white;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.5) 50%, rgba(240, 147, 251, 0.5) 100%), url('./favicon/playboard-165507318.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
    }
    
    .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; }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }
    
    .hero .container {
        position: relative;
        z-index: 3;
        width: 100%;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        max-width: 1200px;
        margin: 4rem auto;
        padding: 4rem 2rem;
    }
    
    .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: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .title-line {
        display: block;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .title-highlight {
        display: block;
        background: linear-gradient(45deg, #ffd700, #ffed4e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 4rem;
        margin: 0.5rem 0;
    }
    
    .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: 1.8rem;
        font-weight: 700;
        color: #ffd700;
        display: block;
    }
    
    .stat-label {
        font-size: 0.9rem;
        opacity: 0.8;
        margin-top: 0.25rem;
    }
    
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .countdown-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        border-radius: 25px;
        padding: 2.5rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        max-width: 400px;
        width: 100%;
    }
    
    .countdown-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .countdown-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .prize-pool {
        font-size: 2rem;
        font-weight: 700;
        color: #ffd700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .countdown-timer {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .timer-item {
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 1rem;
        min-width: 80px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .timer-number {
        font-size: 2rem;
        font-weight: 700;
        color: #ff6b6b;
        display: block;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .timer-label {
        font-size: 0.8rem;
        opacity: 0.8;
        margin-top: 0.25rem;
    }
    
    .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, #ff6b6b, #ee5a24);
        color: white;
        padding: 1rem 2rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
        border: none;
        cursor: pointer;
    }
    
    .primary-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(238, 90, 36, 0.6);
        text-decoration: none;
        color: white;
    }
    
    .secondary-cta {
        display: block;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 1rem 2rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .secondary-cta:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        text-decoration: none;
        color: white;
    }
    
    /* Features Section */
    .features {
        padding: 80px 0;
        background: white;
    }
    
    .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 3rem;
        color: #333;
    }
    
    .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 #f0f0f0;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(45deg, #667eea, #764ba2);
        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: #333;
    }
    
    .feature-card p {
        color: #666;
        line-height: 1.6;
    }
    
    /* Game Types Section - Completely Redesigned */
    .game-types {
        padding: 100px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 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, #ff6b6b, #ee5a24);
        border-color: #ff6b6b;
        box-shadow: 0 8px 25px rgba(255, 107, 107, 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, #667eea, #764ba2, #f093fb);
    }
    
    .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: #2c3e50;
        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 #e1e8ed;
        border-radius: 15px;
        font-size: 1rem;
        font-weight: 500;
        background: white;
        color: #2c3e50;
        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: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    }
    
    .form-group select:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        transform: translateY(-1px);
    }
    
    /* Modern Checkbox Styling */
    .form-group input[type="checkbox"] {
        appearance: none;
        width: 24px;
        height: 24px;
        border: 2px solid #e1e8ed;
        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, #667eea, #764ba2);
        border-color: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 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: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    }
    
    /* Modern Radio Button Styling */
    .form-group input[type="radio"] {
        appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid #e1e8ed;
        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: #667eea;
        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, #667eea, #764ba2);
        border-radius: 50%;
    }
    
    .form-group input[type="radio"]:hover {
        border-color: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    }
    
    /* Radio Button Labels */
    .form-group label:has(input[type="radio"]) {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 12px 16px;
        background: rgba(102, 126, 234, 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(102, 126, 234, 0.1);
        border-color: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    }
    
    .form-group label:has(input[type="radio"]:hover) {
        background: rgba(102, 126, 234, 0.08);
        border-color: rgba(102, 126, 234, 0.3);
    }
    
    /* Price Display Redesign */
    .price-display {
        background: linear-gradient(135deg, #667eea, #764ba2);
        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(102, 126, 234, 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, #ff6b6b, #ee5a24);
        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(255, 107, 107, 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(255, 107, 107, 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, #667eea, #764ba2);
        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, #ff6b6b, #ee5a24);
    }
    
    /* Footer */
    .footer {
        background: #333;
        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: #667eea;
    }
    
    .footer-section p,
    .footer-section a {
        color: #ccc;
        text-decoration: none;
        line-height: 1.6;
    }
    
    .footer-section a:hover {
        color: #667eea;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #555;
        color: #999;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .hero {
            min-height: auto;
            padding: 80px 0;
        }
        
        .hero-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        
        .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: #333;
    }
    
    .age-modal p {
        margin-bottom: 2rem;
        color: #666;
    }
    
    .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, #667eea, #764ba2);
        color: white;
    }
    
    .age-decline {
        background: #e0e0e0;
        color: #333;
    }
    
    .age-btn:hover {
        transform: translateY(-2px);
    }
/* Global list styling - remove all bullets */
ul, ol {
    list-style: none;
    list-style-type: none;
}

ul li, ol li {
    list-style: none;
    list-style-type: none;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: var(--spacing-sm);
}

ul {
    list-style: none;
    list-style-type: none;
    padding-left: 0;
    margin-bottom: var(--spacing-sm);
}

ul li {
    margin-bottom: var(--spacing-xs);
    position: relative;
    padding-left: 0;
    list-style: none;
    list-style-type: none;
}

ul li::before {
    display: none; /* Remove custom bullet points */
}

/* Additional list styling for styled lists */
.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;
}

/* Layout Utilities */
.content-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Button Styles */
.primary-action-button,
.add-to-cart-button,
.cookie-accept-btn,
.confirm-age-btn,
.exit-site-btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.primary-action-button:hover,
.add-to-cart-button:hover,
.cookie-accept-btn:hover,
.confirm-age-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.exit-site-btn {
    background-color: #6c757d; /* Grey for exit button */
    margin-left: var(--spacing-sm);
}

.exit-site-btn:hover {
    background-color: #495057;
}

/* New Header Styles */
.header {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff6b6b);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 8px 40px rgba(255, 107, 107, 0.3);
    border-bottom: 4px solid rgba(255, 255, 255, 0.2);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fff, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

.nav-menu li {
    position: relative;
    list-style: none;
    list-style-type: none;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0.8rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.nav-menu a:hover::before {
    width: 100%;
    height: 100%;
}

.nav-menu a:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.nav-menu a.active {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-menu a.active::before {
    display: none;
}

/* 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);
}

/* Old Header (keeping for compatibility) */
.main-header {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-light);
}

.header-inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo-link {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
    text-transform: uppercase;
}

.site-logo-link img {
    height: 90px; 
    margin-right: var(--spacing-xs);
}

.main-navigation a {
    color: var(--text-light);
    margin-left: var(--spacing-lg);
    font-weight: 500;
}

.main-navigation a:hover {
    color: var(--secondary-color);
}

/* Navigation menu list styling */
.main-navigation ul {
    list-style: none;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.main-navigation li {
    list-style: none;
    list-style-type: none;
    padding-left: 0;
}

/* Hero Section */
.hero-section {
    background-image: url('/assets/hero.jpg'); /* Змініть на шлях до вашого зображення */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--text-light);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content-area {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Забезпечуємо, що вміст знаходиться поверх фону та накладення */

    /* Нові стилі для напівпрозорого фону */
    background-color: rgba(52, 58, 64, 0.7); /* Сірий колір (var(--text-dark)) з 70% прозорістю */
    padding: var(--spacing-lg) var(--spacing-xl); /* Додаємо внутрішні відступи */
    border-radius: var(--border-radius-lg); /* Заокруглюємо кути */
    box-shadow: var(--shadow-medium); /* Додаємо м'яку тінь для об'єму */
    backdrop-filter: blur(3px); /* Трохи розмиває фон за блоком для кращого візуального ефекту */
}

/* Переконайтесь, що текст залишається світлим та читабельним на сірому фоні */
.hero-content-area h1,
.hero-content-area p,
.jackpot-countdown-timer {
    color: var(--text-light); /* Колір тексту білий або дуже світлий */
}

/* Також, можливо, потрібно буде відкоригувати стилі для лічильника, щоб він добре виглядав на новому фоні */
.jackpot-countdown-timer div {
    background-color: rgba(255, 255, 255, 0.15); /* Зробити фон елементів лічильника ще прозорішим або повністю прибрати */
    /* border: 1px solid rgba(255, 255, 255, 0.3); */ /* Можливо, додати тонку світлу рамку */
}

/* Optional: Add some subtle background patterns or shapes for visual interest */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float1 15s infinite ease-in-out;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float2 12s infinite ease-in-out reverse;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}
@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-15px, -15px); }
    100% { transform: translate(0, 0); }
}


.hero-content-area {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1; /* Ensure content is above decorative elements */
}

.hero-content-area h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content-area p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.jackpot-countdown-timer {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.jackpot-countdown-timer div {
    background-color: rgba(255, 255, 255, 0.15);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-light);
}

.jackpot-countdown-timer span {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

/* How It Works Section */
#how-it-works-section {
    background: linear-gradient(135deg, var(--primary-color), #4CAF50);
    position: relative; /* Важливо для накладання кольору */
    padding: var(--spacing-xxl) 0; /* Додаємо відступ зверху та знизу */
    color: var(--text-light); /* Змінюємо колір тексту на світлий для контрасту */
    text-align: center;
}

.section-header-text {
    margin-top: 100px;
    background-color: var(--background-light); /* Sets the background to white */
    padding: var(--spacing-lg); /* Adds some internal spacing */
    border-radius: var(--border-radius-md); /* Rounds the corners slightly */
    box-shadow: var(--shadow-light); /* Adds a subtle shadow for depth */
    margin-bottom: var(--spacing-xl); /* Ensures proper spacing below the block */
    max-width: 800px; /* Limits the width as it was previously */
    margin-left: auto; /* Centers the block */
    margin-right: auto; /* Centers the block */
    text-align: center; /* Keeps the text centered */
}

/* You may need to adjust the text color if it doesn't stand out enough on white */
.section-header-text h2 {
    color: var(--primary-color); /* Keeps the primary color for the heading */
}

.section-header-text p {
    color: var(--text-dark); /* Ensures paragraph text is dark on white */
}
.process-steps-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    align-items: start;
    position: relative;
}

.flow-connector-arrow {
    display: none; /* Hidden on desktop, handled by grid layout */
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin: var(--spacing-md) 0;
}

@media (min-width: 768px) {
    .process-steps-layout {
        grid-template-columns: repeat(4, 1fr);
        position: relative;
        margin-bottom: 50px;
    }
    .process-steps-layout::before {
        content: '';
        position: absolute;
        top: 60px; /* Adjust to align with step numbers */
        left: var(--spacing-lg);
        right: var(--spacing-lg);
        height: 2px;
        background-color: var(--border-color);
        z-index: 0;
    }
    .flow-connector-arrow {
        display: block;
        position: absolute;
        top: 50px; /* Align with line */
        transform: translateY(-50%);
        color: var(--primary-color);
        font-size: 2rem;
        z-index: 1;
    }
    .process-steps-layout .flow-connector-arrow:nth-of-type(1) { left: 24%; }
    .process-steps-layout .flow-connector-arrow:nth-of-type(2) { left: 49%; }
    .process-steps-layout .flow-connector-arrow:nth-of-type(3) { left: 74%; }
}


.process-card {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
}
.process-card p {
    color: #6c757d; /* This is a common medium-grey color */
    /* You could also use a variable if defined, e.g., color: var(--text-muted); if you had one */
}
.step-number-indicator {
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-light);
}

/* Tab Navigation */
.tab-menu-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--background-dark);
    padding: var(--spacing-sm);
    gap: var(--spacing-xs);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tab-menu-controls button {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.tab-menu-controls button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

.tab-menu-controls button.active {
    background-color: var(--secondary-color);
    color: var(--text-dark); /* Changed for contrast */
    border-color: var(--secondary-color);
    font-weight: bold;
}

/* Tab Content Panels */
.tab-content {
    display: none;
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background-light);
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    margin-bottom: var(--spacing-xl);
}

.tab-content.active {
    display: block;
}

/* Form Control Groups */
.form-input-group {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px dashed var(--border-color);
}

.form-input-group:last-of-type {
    border-bottom: none;
}

.form-input-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.form-input-group select {
    width: 100%;
    padding: var(--spacing-xs);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--background-light);
    font-size: 1rem;
}

.radio-option-selector {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xs);
}

.radio-option-selector label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.radio-option-selector input[type="radio"] {
    margin-right: var(--spacing-xs);
    transform: scale(1.2);
}

.number-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
    background-color: #f0f0f0;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
}

.number-selection-grid button {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-xs);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.number-selection-grid button:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.number-selection-grid button.active {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    font-weight: bold;
}

.total-price-display {
    text-align: right;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: var(--spacing-lg);
    color: var(--primary-color);
}

/* Info Sections (About, System Play, Syndicate Info) */
.info-cards-grid,
.info-section-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.info-feature-card,
.info-intro-block,
.info-detail-block {
    background-color: var(--text-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.info-feature-card h2, .info-feature-card h3, .info-feature-card h4,
.info-intro-block h2, .info-detail-block h3, .info-detail-block h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.odds-summary-table,
.entry-data-table,
.prize-division-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--spacing-sm);
    font-size: 0.95rem;
}

.odds-summary-table .table-header div,
.entry-data-table .table-header div,
.prize-division-table thead th {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--spacing-xs) var(--spacing-sm);
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
}

.odds-summary-table .table-row div,
.entry-data-table .table-row div,
.prize-division-table tbody td {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.odds-summary-table .table-row:nth-child(even),
.prize-division-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* System Play Specifics */
.entry-comparison-layout {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.standard-entry-display,
.system-entry-display {
    flex: 1;
    min-width: 300px;
    background-color: #f5f5f5;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    border: 1px dashed var(--border-color);
}

/* Syndicate Play Specifics */
.syndicate-selection-area {
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--spacing-lg);
}

.syndicate-option-step {
    margin-bottom: var(--spacing-lg);
}

.syndicate-heading {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.6rem;
}

.syndicate-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.syndicate-offer-item {
    background-color: var(--background-light);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.syndicate-offer-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-3px);
}

.syndicate-offer-item.selected {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
}

.syndicate-offer-item .item-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.syndicate-offer-item .item-title span {
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    color: #6c757d;
}

.syndicate-offer-item .item-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.syndicate-offer-item input[type="radio"] {
    margin-right: var(--spacing-xs);
}

.syndicate-total-cost {
    text-align: right;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
}

/* Lotto Party Specifics */
.lotto-party-selection {
    padding: var(--spacing-lg) 0;
}

.party-selection-header h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.party-selection-header h3 span {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: var(--spacing-xs);
}

.party-game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.party-offer-card {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.party-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-visual {
    height: 150px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
}


.party-card-details {
    padding: var(--spacing-md);
}

.party-card-details h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.party-card-details p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.party-card-details strong {
    font-size: 1.3rem;
    color: var(--text-dark);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.party-card-details small {
    font-size: 0.8rem;
    color: #6c757d;
}

.party-card-details span {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: var(--spacing-sm);
}

.party-card-details label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.party-card-details input[type="radio"] {
    margin-right: var(--spacing-xs);
}

.party-total-amount {
    text-align: right;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
}


/* Latest Results Section */
.latest-draw-results {
    padding: var(--spacing-lg) 0;
}

.draw-results-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-medium);
}

.draw-results-header h2 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.draw-results-header h2 span {
    color: var(--secondary-color);
}

.draw-results-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.winning-numbers-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-md);
}

.winning-numbers-box strong {
    margin-right: var(--spacing-sm);
}

.result-ball {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: var(--text-light);
    color: var(--primary-color);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 var(--spacing-xs);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

.result-ball.bonus-ball {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.results-table-wrapper {
    overflow-x: auto; /* For responsive tables */
}

.prize-division-table {
    min-width: 600px; /* Ensure table doesn't get too squished on small screens */
}


/* Number Frequency Analysis Section */
.number-analysis-section {
    padding: var(--spacing-lg) 0;
}

.analysis-header-content {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.analysis-header-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
}

.analysis-chart-legend {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.legend-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: var(--border-radius-sm);
    margin-right: var(--spacing-xs);
    vertical-align: middle;
}

.dark-shape {
    background-color: var(--primary-color);
}

.light-shape {
    background-color: var(--secondary-color);
}

.number-trend-visuals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--spacing-md);
    justify-content: center;
}

.number-trend-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-sm);
    background-color: #f8f8f8;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.number-trend-element.trend-reversed {
    flex-direction: column-reverse; /* Example of visual variation */
}

.number-display-circle {
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: var(--spacing-xs) 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.number-trend-element.trend-reversed .number-display-circle {
    background-color: var(--secondary-color);
}

.trend-value {
    font-size: 0.9rem;
    color: #6c757d;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color), #4CAF50);
}

.faq-section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.faq-section-header h2 {
    color: var(--text-dark);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-item {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-question-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark);
    background-color: #e9ecef; /* Light grey for button */
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question-button::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-question-button {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.faq-accordion-item.active .faq-question-button::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer-content {
    padding: 0 var(--spacing-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-accordion-item.active .faq-answer-content {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-md);
}


/* New Footer Styles */
.footer {
    background: #333;
    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: #667eea;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer */
.site-footer {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: var(--spacing-xl) 0;
    margin-top: auto; /* Pushes footer to the bottom */
}

.footer-main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-brand-info {
    flex: 1 1 300px; /* Allows it to grow or shrink */
    min-width: 280px;
    margin-bottom: var(--spacing-md);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    height: 55px;
    margin-right: var(--spacing-xs);
}

.responsible-gambling-statement {
    font-size: 0.9rem;
    opacity: 0.8;
}

.gambling-advice-heading {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
}

.gambling-text-block {
    margin-bottom: var(--spacing-sm);
}

.support-phone-number {
    color: var(--secondary-color);
    font-weight: bold;
}

.gambling-resource-link {
    color: var(--secondary-color);
    text-decoration: underline;
}

.gambling-resource-link:hover {
    color: var(--text-light);
}

.company-legal-name {
    font-weight: bold;
}

.footer-compliance-badges {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligns badges to the right */
    gap: var(--spacing-md);
}

.age-support-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: flex-end; /* Align badges to the right within their group */
}

.support-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xs);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 80px; /* Fixed width for uniformity */
    transition: background-color 0.3s ease;
}

.support-badge:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.badge-icon {
    max-height: 40px;
    max-width: 70px;
    object-fit: contain;
}

.age-restriction-label {
    background-color: var(--accent-color);
    color: var(--text-light);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.age-restriction-text {
    font-size: 1.5rem;
}

.footer-legal-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
    flex-wrap: wrap;
}

.footer-legal-links .legal-link {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal-links .legal-link:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Cookie Consent & Age Verification Modals */
.cookie-banner-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: var(--text-light);
    padding: var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner-notice p {
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

.age-verification-modal {
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

/* --- Age Verification Modal Styles --- */

/* The Overlay */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* Darker, slightly transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensures it's on top of everything */
    backdrop-filter: blur(5px); /* Subtle blur effect for background content */
    animation: fadeIn 0.3s ease-out forwards; /* Smooth entrance */
}

/* The Dialog Box Itself */
.age-verification-content {
    background-color: var(--background-light); /* White or light background */
    padding: var(--spacing-xl); /* Generous padding */
    border-radius: var(--border-radius-lg); /* Rounded corners */
    text-align: center;
    max-width: 550px; /* Slightly wider */
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* More pronounced shadow */
    animation: slideInFromTop 0.4s ease-out forwards; /* Slide in effect */
    border: 2px solid var(--primary-color); /* A subtle border in brand color */
}

/* Heading within the Dialog */
.age-verification-content h3 {
    color: var(--primary-color); /* Brand primary color for emphasis */
    margin-bottom: var(--spacing-md);
    font-size: 2.2rem; /* Larger, more impactful heading */
    font-family: var(--font-heading); /* Use the heading font */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Paragraph Text */
.age-verification-content p {
    margin-bottom: var(--spacing-lg); /* More space below text */
    font-size: 1.15rem; /* Slightly larger, easier to read */
    line-height: 1.5;
    color: var(--text-dark);
}

/* Buttons Container (Optional, if you want specific layout for buttons) */
.age-verification-content .button-group { /* Add this class to a new div wrapping your buttons */
    display: flex;
    justify-content: center;
    gap: var(--spacing-md); /* Space between buttons */
    margin-top: var(--spacing-xl); /* More space above buttons */
}

/* Confirm Button */
.confirm-age-btn {
    background-color: var(--primary-color); /* Primary brand color */
    color: var(--text-light);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 150px; /* Ensure buttons have a consistent minimum width */
}

.confirm-age-btn:hover {
    background-color: var(--secondary-color); /* Changes to accent color on hover */
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Soft shadow on hover */
}

/* Exit Button */
.exit-site-btn {
    background-color: #6c757d; /* A neutral, calming grey */
    color: var(--text-light);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    margin-right: 17px;
    margin-top: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 150px;
}

.exit-site-btn:hover {
    background-color: #495057; /* Darker grey on hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromTop {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* --- End Age Verification Modal Styles --- */

/* Ensure the existing button styles for .primary-action-button, .add-to-cart-button, .cookie-accept-btn are still in place as defined earlier. */

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }

    .header-inner-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .main-navigation {
        margin-top: var(--spacing-sm);
    }

    .main-navigation a {
        margin: 0 var(--spacing-sm);
    }

    .hero-content-area h1 {
        font-size: 2.5rem;
    }

    .jackpot-countdown-timer {
        flex-wrap: wrap;
    }

    .process-steps-layout {
        grid-template-columns: 1fr;
    }
    .process-steps-layout::before {
        display: none;
    }
    .flow-connector-arrow {
        display: block;
        transform: rotate(90deg);
        margin: var(--spacing-md) auto;
        font-size: 2rem;
        position: static; /* Reset positioning */
    }

    .tab-menu-controls {
        flex-direction: column;
        padding: var(--spacing-md);
    }

    .tab-menu-controls button {
        width: 100%;
        margin-bottom: var(--spacing-xs);
    }

    .info-cards-grid,
    .info-section-wrapper {
        grid-template-columns: 1fr;
    }

    .entry-comparison-layout {
        flex-direction: column;
    }

    .footer-main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand-info {
        margin-bottom: var(--spacing-lg);
    }

    .footer-compliance-badges {
        align-items: center;
    }

    .age-support-badge-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content-area h1 {
        font-size: 2rem;
    }
    .jackpot-countdown-timer div {
        min-width: 100px;
        font-size: 1.5rem;
    }
    .jackpot-countdown-timer span {
        font-size: 2.5rem;
    }
    .site-logo-link {
        font-size: 1.5rem;
    }
    .site-logo-link img {
        height: 90px;
    }
    .main-navigation a {
        margin: 0 var(--spacing-xs);
        font-size: 0.9rem;
    }
    .number-selection-grid {
        grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
    }
    .result-ball {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}


/* terms */

/* --- Gradient Background for Main Content Area --- */
.page-main-content {
    /* Use a linear gradient for a subtle, multi-directional flow */
    background: linear-gradient(
        45deg,                      /* Angle of the gradient */
        #e0f7fa 0%,                 /* Very light blue-green (from your primary/secondary blend) */
        #f1f8e9 50%,                /* Very light green-yellow */
        #e3f2fd 100%                /* Very light pastel blue */
    );
    /* Alternative gradient for a slightly bolder look, closer to your brand colors:
    background: linear-gradient(
        135deg,
        rgba(0, 123, 255, 0.1) 0%,   // Primary color with low opacity
        rgba(255, 152, 0, 0.1) 100%  // Secondary color with low opacity
    );
    */
    padding: var(--spacing-xl) 0;
    flex-grow: 1; /* Allows main content to expand and push footer down */
    position: relative; /* Needed if you want to add abstract shapes later */
    overflow: hidden; /* Ensures any overflow from abstract shapes is contained */
}

/* Enhancing the legal-document-container for better contrast and pop */
.legal-document-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-md);
    background-color: var(--background-light); /* Keep this as pure white for content readability */
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* More prominent shadow for a "floating" effect */
    border: none; /* Remove previous light border, shadow is enough */
    /* Add a slight border for extra definition if needed: */
    /* border: 1px solid rgba(0, 123, 255, 0.2); */
}

/* --- Optional: Add abstract shapes to the gradient background for more uniqueness --- */
.page-main-content::before,
.page-main-content::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.3; /* Subtle transparency */
    filter: blur(80px); /* Soft blur to make them look like glowing elements */
    z-index: 0; /* Keep them behind the main content container */
}

.page-main-content::before {
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    width: 400px;
    height: 400px;
    top: -100px;
    left: -150px;
    animation: moveGradient1 15s infinite alternate ease-in-out;
}

.page-main-content::after {
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
    animation: moveGradient2 18s infinite alternate ease-in-out;
}

@keyframes moveGradient1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(50px, 30px); }
    100% { transform: translate(0, 0); }
}

@keyframes moveGradient2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-40px, -20px); }
    100% { transform: translate(0, 0); }
}

/* Ensure text remains readable */
.document-title {
    color: var(--primary-color);
}
.effective-date,
.document-section p,
.styled-list li {
    color: var(--text-dark); /* Ensure dark text for readability on white container */
}


/* chekout */

/* --- Checkout Page Specific Styles --- */
.checkout-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-light); /* Main section background */
}

.checkout-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md);
    background-color: #f0f5f9; /* Light contrasting background for header */
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

.checkout-header .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.checkout-header .section-description {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.checkout-grid-container {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column for mobile */
    gap: var(--spacing-xl); /* Space between form and summary */
    align-items: start; /* Align items to the top */
}

@media (min-width: 992px) { /* Two columns for larger screens */
    .checkout-grid-container {
        grid-template-columns: 2fr 1fr; /* Form takes more space */
    }
}

/* --- Checkout Form Block --- */
.checkout-form-block {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium); /* Deeper shadow for the main interactive block */
    border: 1px solid var(--border-color);
}

.checkout-form-block .block-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-heading);
    text-align: center;
}

.checkout-payment-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md); /* Space between form inputs */
}

.checkout-payment-form .form-input {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: #fefefe;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.checkout-payment-form .form-input::placeholder {
    color: #a0a0a0;
}

.checkout-payment-form .form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

.payment-summary-block {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    justify-content: space-between;
    align-items: center;
    background-color: #e9f5ff; /* Light blue background for summary */
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--primary-color);
    margin-top: var(--spacing-lg);
}

.payment-summary-block .total-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark);
    margin: 0;
    flex-basis: 50%; /* Take half width on larger screens */
    text-align: left;
}

.payment-summary-block .total-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color); /* Highlight total with accent color */
    margin: 0;
    flex-basis: 50%; /* Take half width on larger screens */
    text-align: right;
}

.payment-summary-block .checkout-button {
    width: 100%; /* Full width button */
    margin-top: var(--spacing-md); /* Space above button */
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.2rem;
}

/* --- Order Summary Block --- */
.order-summary-block {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.order-summary-block .block-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-heading);
    text-align: center;
}

.ticket-summary-display {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md); /* Space between ticket rows */
}

.ticket-entry-row {
    display: flex;
    flex-wrap: wrap; /* Allow balls to wrap if too many */
    justify-content: center;
    gap: var(--spacing-xs);
    background-color: #fefefe;
    border: 1px dashed var(--border-color);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ticket-ball {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex-shrink: 0; /* Prevent shrinking */
}

.ticket-ball.bonus-ball {
    background-color: var(--secondary-color); /* Different color for bonus ball */
    color: var(--text-dark);
}

.summary-disclaimer {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* --- Thank You Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* Dark, transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out forwards;
}

.modal-content {
    background-color: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideInFromTop 0.4s ease-out forwards;
    border: 2px solid var(--accent-color); /* Green border for success */
}

.modal-content p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.modal-close-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1.1rem;
    min-width: 120px;
}

/* Ensure existing animations are defined */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromTop {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .checkout-header .section-title {
        font-size: 2rem;
    }
    .checkout-form-block .block-title,
    .order-summary-block .block-title {
        font-size: 1.6rem;
    }
    .payment-summary-block {
        flex-direction: column;
        align-items: flex-start;
    }
    .payment-summary-block .total-label,
    .payment-summary-block .total-value {
        flex-basis: 100%;
        text-align: left;
    }
    .payment-summary-block .checkout-button {
        margin-top: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .checkout-header .section-title {
        font-size: 1.8rem;
    }
    .checkout-form-block .block-title,
    .order-summary-block .block-title {
        font-size: 1.4rem;
    }
    .ticket-ball {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* Manual Number Selection Styles */
.number-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
    max-width: 100%;
}

.number-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    background: white;
    color: #333;
    font-weight: bold;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-btn:hover {
    border-color: #007bff;
    background: #f8f9fa;
    transform: scale(1.1);
}

.number-btn.selected {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.selected-numbers {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.selected-numbers p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.clear-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.clear-btn:hover {
    background: #c82333;
}

@media (max-width: 768px) {
    .number-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.25rem;
    }

    .number-btn {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .number-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .number-btn {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.7rem;
    }
}

/* Modern Styling for Basket, Terms, and Policy Pages */
/* Basket Page Styling */
.checkout-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 2rem;
}



.checkout-section .container {
    position: relative;
    z-index: 2;
}

.checkout-header .section-title {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.checkout-header .section-description {
    color: var(--accent-color);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.checkout-form-block,
.order-summary-block {
    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;
    margin-bottom: 2rem;
}

.checkout-form-block::before,
.order-summary-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.checkout-form-block .block-title,
.order-summary-block .block-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Form Input Styling */
.checkout-payment-form .form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 500;
    background: white;
    color: #2c3e50;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.5rem;
}

.checkout-payment-form .form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.checkout-payment-form .form-input:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.checkout-payment-form .form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

/* Payment Summary Block Styling */
.payment-summary-block {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.payment-summary-block::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;
}

.payment-summary-block .total-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.payment-summary-block .total-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Modern Button Styling */
.checkout-button {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    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(255, 107, 107, 0.3);
}

.checkout-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;
}

.checkout-button:hover::before {
    left: 100%;
}

.checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.checkout-button:active {
    transform: translateY(-1px);
}

/* Ticket Display Styling */
.ticket-summary-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ticket-entry-row {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.ticket-ball {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ticket-ball:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.ticket-ball.bonus-ball {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.ticket-ball.bonus-ball:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.summary-disclaimer {
    color: #6b7280;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Legal Document Styling (Terms and Policy) */
.legal-document-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.legal-document-container::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;
}

.legal-document-container .content-width {
    position: relative;
    z-index: 2;
}

.document-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.effective-date {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.legal-document-container p:not(.effective-date) {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

.legal-document-container p:not(.effective-date)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.document-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.document-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.section-heading {
    color: #2c3e50;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.styled-list {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.styled-list li {
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.styled-list li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.styled-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Styles for Basket, Terms, and Policy */
@media (max-width: 768px) {
    .checkout-section,
    .legal-document-container {
        padding: 60px 0;
    }
    
    .checkout-header .section-title,
    .document-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .checkout-header .section-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .checkout-form-block,
    .order-summary-block,
    .document-section {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .checkout-form-block .block-title,
    .order-summary-block .block-title,
    .section-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .checkout-payment-form .form-input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .payment-summary-block {
        padding: 1.5rem;
    }
    
    .payment-summary-block .total-value {
        font-size: 1.6rem;
    }
    
    .checkout-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .ticket-ball {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .checkout-section,
    .legal-document-container {
        padding: 40px 0;
    }
    
    .checkout-header .section-title,
    .document-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .checkout-header .section-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .checkout-form-block,
    .order-summary-block,
    .document-section {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .checkout-form-block .block-title,
    .order-summary-block .block-title,
    .section-heading {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .checkout-payment-form .form-input {
        padding: 12px 14px;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .payment-summary-block {
        padding: 1.25rem;
    }
    
    .payment-summary-block .total-value {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .checkout-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .ticket-ball {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .ticket-entry-row {
        gap: 0.5rem;
    }
}

/* Modern Burger Menu and Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    left: 0;
}

.burger-line:nth-child(1) {
    top: 8px;
}

.burger-line:nth-child(2) {
    top: 18px;
}

.burger-line:nth-child(3) {
    top: 28px;
}

/* Burger Menu Animation */
.mobile-menu-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 18px;
}

.mobile-menu-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 18px;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 50%, rgba(240, 147, 251, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-content {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.mobile-nav-header {
    margin-bottom: 3rem;
}

.mobile-nav-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mobile-nav-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 400;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 1.5rem;
}

.mobile-nav-menu a {
    display: block;
    padding: 1.2rem 2rem;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-nav-menu a::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;
}

.mobile-nav-menu a:hover::before {
    left: 100%;
}

.mobile-nav-menu a: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);
}

.mobile-nav-menu a.active {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-color: #ff6b6b;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transform: translateY(-2px);
}

.mobile-nav-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Mobile Navigation Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-nav-content {
        padding: 1.5rem;
    }
    
    .mobile-nav-logo {
        font-size: 2rem;
    }
    
    .mobile-nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }
    
    .mobile-nav-close {
        top: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-nav-content {
        padding: 1rem;
    }
    
    .mobile-nav-logo {
        font-size: 1.8rem;
    }
    
    .mobile-nav-menu a {
        font-size: 1.1rem;
        padding: 0.9rem 1.2rem;
    }
    
    .mobile-nav-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }
}