body.age-gate {
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
}

.age-gate-card {
    width: 100%;
    max-width: 480px;
    padding: 48px 40px;
    text-align: center;
    background: rgba(26, 31, 58, 0.85);
    border: 1px solid rgba(102, 126, 234, 0.25);
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    animation: ageGateFadeIn 0.5s ease-out;
}

.age-gate-logo {
    margin-bottom: 28px;
}

.age-gate-logo img {
    width: 88px;
    height: auto;
    filter: drop-shadow(0 0 24px rgba(102, 126, 234, 0.5));
}

.age-gate-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.35;
}

.age-gate-warning {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
}

.age-gate-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.age-gate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.age-gate-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}

.age-gate-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.45);
}

.age-gate-btn--secondary {
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-color);
}

.age-gate-btn--secondary:hover {
    color: var(--text-primary);
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(102, 126, 234, 0.08);
}

.age-gate-footer {
    margin-top: 32px;
    font-size: 0.8rem;
    color: rgba(160, 174, 192, 0.6);
}

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

@media (max-width: 480px) {
    .age-gate-card {
        padding: 36px 24px;
    }

    .age-gate-title {
        font-size: 1.25rem;
    }
}
