.bg-animate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 20% 30%, #0A1122, #020617);
}

.moving-gradient {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at 50% 50%, rgba(45, 212, 191, 0.06) 0%, transparent 70%);
    animation: breathe 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes breathe {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.grid-lines {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(45, 212, 191, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: shiftGrid 20s linear infinite;
    pointer-events: none;
}

@keyframes shiftGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(45, 212, 191, 0.1);
    color: var(--accent-cyan);
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: 1px solid rgba(45, 212, 191, 0.2);
}

.back-button:hover {
    background: var(--accent-cyan);
    color: #0A0F1A;
    transform: translateX(-5px);
    border-color: var(--accent-cyan);
}

.privacy-content {
    padding: 60px 0 100px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF, var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
}

.privacy-header .update-date {
    color: var(--text-dim);
    font-size: 0.9rem;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 40px;
}

.privacy-card {
    background: rgba(15, 23, 40, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid var(--border-dim);
    transition: var(--transition-smooth);
}

.privacy-card:hover {
    border-color: rgba(45, 151, 212, 0.3);
    transform: translateY(-2px);
}

.privacy-card h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-card h2 i {
    font-size: 1.4rem;
}

.privacy-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0 12px;
    color: var(--text-light);
}

.privacy-card p {
    color: var(--text-dim);
    margin-bottom: 16px;
    line-height: 1.7;
}

.privacy-card ul,
.privacy-card ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-dim);
}

.privacy-card li {
    margin: 10px 0;
    line-height: 1.6;
}

.privacy-card strong {
    color: var(--accent-cyan);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    margin: 30px 0;
}

.contact-block {
    background: linear-gradient(135deg, rgba(45, 89, 212, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.contact-block p {
    margin-bottom: 24px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-cyan);
    color: #0A0F1A;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 123, 212, 0.3);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-card {
        padding: 24px;
    }

    .privacy-card h2 {
        font-size: 1.3rem;
    }

    .privacy-card h2 i {
        font-size: 1.1rem;
    }

    .back-button span {
        display: none;
    }

    .back-button {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .privacy-card {
        padding: 20px;
    }

    .privacy-card h2 {
        font-size: 1.2rem;
        flex-wrap: wrap;
    }

    .contact-block {
        padding: 24px;
    }
}