/* Privacy Popup Styling */
.privacy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-overlay.active {
    opacity: 1;
    visibility: visible;
}

.privacy-card {
    background: rgba(35, 30, 63, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Lilita One', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    text-align: center;
}

.privacy-overlay.active .privacy-card {
    transform: translateY(0);
}

.privacy-card h2 {
    color: #f1c40f;
    font-size: 2rem;
    margin-bottom: 20px;
}

.privacy-card p {
    line-height: 1.5;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.privacy-options {
    text-align: left;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
}

.privacy-option {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.privacy-option:last-child {
    margin-bottom: 0;
}

.privacy-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #f1c40f;
}

.privacy-option label {
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
}

.privacy-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-btn {
    padding: 14px 24px;
    border-radius: 12px;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.privacy-btn-primary {
    background: #f1c40f;
    color: #231e3f;
}

.privacy-btn-primary:hover {
    background: #f7dc6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.privacy-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.privacy-link {
    color: #38bdf8;
    text-decoration: underline;
    cursor: pointer;
}

.privacy-age-check {
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .privacy-card {
        padding: 30px 20px;
    }
    .privacy-card h2 {
        font-size: 1.6rem;
    }
}
