    body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(-45deg, #000000, #676667, #aa9fb7, #344b71);
        background-size: 400% 400%;
        animation: gradientBG 10s ease infinite;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
    /* Animated gradient */
    
    @keyframes gradientBG {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    
    .container {
        backdrop-filter: blur(15px);
        background: rgba(255, 255, 255, 0.15);
        padding: 40px 50px;
        border-radius: 20px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
        text-align: center;
        width: 500px;
        color: white;
        transition: transform 0.3s ease;
    }
    
    .container:hover {
        transform: translateY(-5px);
    }
    
    .container h2 {
        margin-bottom: 20px;
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .container p {
        margin-bottom: 25px;
        font-size: 16px;
        line-height: 1.5;
        font-style: italic;
    }
    
    .container button {
        padding: 12px 25px;
        border: none;
        border-radius: 30px;
        background: linear-gradient(45deg, #00fff2, #6a11cb);
        color: white;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .container button:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    }
    
    .container button:active {
        transform: scale(0.95);
    }
    
    #age-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.95);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }
    
    .age-box {
        background: #111;
        padding: 40px;
        border-radius: 10px;
        text-align: center;
        color: white;
        max-width: 400px;
        border-left: 5px solid #e50914;
    }
    
    .age-box h2 {
        margin-bottom: 15px;
    }
    
    .age-box p {
        color: #ccc;
        margin-bottom: 25px;
    }
    
    .age-buttons button {
        padding: 10px 20px;
        margin: 5px;
        border: none;
        font-weight: bold;
        cursor: pointer;
        border-radius: 5px;
    }
    
    #enter-btn {
        background-color: #e50914;
        color: white;
    }
    
    #exit-btn {
        background-color: #444;
        color: white;
    }
    
    #enter-btn:hover {
        background-color: #f40612;
    }
    
    #exit-btn:hover {
        background-color: #666;
    }