/* HashDrip Age Verification - Bold & Immersive */

* {
    cursor: auto;
}

/* Full screen overlay */
.hd-age-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hd-age-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Smoke effect layers */
.hd-smoke {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.4;
    pointer-events: none;
}

.hd-smoke-1 {
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.15) 0%, transparent 50%);
    animation: smoke1 12s ease-in-out infinite;
}

.hd-smoke-2 {
    background: radial-gradient(ellipse at 70% 60%, rgba(212, 168, 67, 0.1) 0%, transparent 45%);
    animation: smoke2 15s ease-in-out infinite;
}

.hd-smoke-3 {
    background: radial-gradient(ellipse at 50% 40%, rgba(212, 168, 67, 0.08) 0%, transparent 55%);
    animation: smoke3 18s ease-in-out infinite;
}

@keyframes smoke1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(30px, -20px) scale(1.1); opacity: 0.25; }
}

@keyframes smoke2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
    50% { transform: translate(-40px, 15px) scale(1.15); opacity: 0.2; }
}

@keyframes smoke3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(20px, 25px) scale(1.2); opacity: 0.15; }
}

/* Ambient gold glow */
.hd-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

/* Main content container */
.hd-age-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo */
.hd-logo-container {
    margin-bottom: 50px;
}

.hd-logo {
    max-width: 380px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(212, 168, 67, 0.4));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Question text */
.hd-question {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
    letter-spacing: 2px;
}

/* Buttons container */
.hd-buttons {
    display: flex;
    gap: 20px;
}

/* Button base */
.hd-btn {
    padding: 18px 60px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

/* Yes button - Gold */
.hd-btn-yes {
    background: linear-gradient(135deg, #D4A843 0%, #E8C56C 100%);
    color: #000;
    box-shadow: 0 4px 30px rgba(212, 168, 67, 0.3);
}

.hd-btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 168, 67, 0.5);
}

.hd-btn-yes:active {
    transform: translateY(-1px);
}

/* No button - Outline */
.hd-btn-no {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hd-btn-no:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Legal text */
.hd-legal {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 50px 0 0 0;
    letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 600px) {
    .hd-logo {
        max-width: 280px;
    }

    .hd-question {
        font-size: 1.25rem;
    }

    .hd-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .hd-btn {
        width: 100%;
        padding: 16px 40px;
    }

    .hd-glow {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 400px) {
    .hd-logo {
        max-width: 220px;
    }

    .hd-logo-container {
        margin-bottom: 40px;
    }

    .hd-question {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}
