/* Videez privacy page – dark theme aligned with app (purple / cyan accents) */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(145deg, #0a0a12 0%, #12121c 45%, #0d1118 100%);
    color: #e8e8ef;
    line-height: 1.65;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    width: 92%;
    max-width: 820px;
    background: rgba(30, 30, 42, 0.92);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 32px 28px 28px;
    margin: 36px 0 48px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(12px);
}

header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(6, 182, 212, 0.35);
    margin-bottom: 8px;
}

header h1 {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 700;
    margin: 0 0 12px;
    background: linear-gradient(120deg, #c4b5fd 0%, #a78bfa 35%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 6px 0;
    color: #b4b4c4;
}

.policy-details h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #67e8f9;
    border-bottom: 1px solid rgba(6, 182, 212, 0.35);
    padding-bottom: 6px;
    margin: 32px 0 14px;
}

.policy-details h2:first-of-type {
    margin-top: 20px;
}

.policy-details p,
.policy-details ul {
    font-size: 0.95rem;
    margin-top: 10px;
    margin-bottom: 18px;
    color: #d1d1dc;
}

.policy-details ul {
    padding-left: 1.35rem;
}

.policy-details ul li {
    margin-bottom: 10px;
}

.policy-details ul li::marker {
    color: #8b5cf6;
}

a {
    color: #a78bfa;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #c4b5fd;
    text-decoration: underline;
}

footer {
    text-align: center;
    padding-top: 24px;
    margin-top: 28px;
    border-top: 1px solid rgba(139, 92, 246, 0.25);
}

footer p {
    font-size: 0.88rem;
    color: #8b8b9e;
    margin: 0;
}

footer a {
    color: #22d3ee;
}

footer a:hover {
    color: #67e8f9;
}

@media (max-width: 480px) {
    .container {
        width: 94%;
        padding: 24px 18px 22px;
        margin: 20px 0 32px;
    }

    .policy-details h2 {
        font-size: 1.1rem;
    }
}
