/* ===========================
   Policy Pages Styles
   =========================== */

.policy-page {
    padding: 120px 0 80px;
    min-height: calc(100vh - 120px);
}

.policy-content {
    max-width: 780px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-update {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.policy-intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.policy-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.policy-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.policy-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-content ul {
    margin: 12px 0 20px 0;
    padding-left: 0;
    list-style: none;
}

.policy-content ul li {
    position: relative;
    padding: 6px 0 6px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    opacity: 0.6;
}

.policy-content a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: opacity 0.2s;
}

.policy-content a:hover {
    opacity: 0.8;
}

.policy-content strong {
    color: var(--text-primary);
}

.policy-content code {
    font-family: var(--font-mono);
    font-size: 13px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2px 6px;
    color: var(--accent-cyan);
}

/* Tables */
.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 28px;
    font-size: 14px;
}

.policy-table th,
.policy-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.policy-table th {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.02);
}

.policy-table td {
    color: var(--text-secondary);
}

[data-theme="light"] .policy-table th {
    background: rgba(0,0,0,0.02);
}

/* Highlight box */
.policy-highlight {
    background: rgba(0, 212, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 20px 0 28px;
}

.policy-highlight p {
    margin-bottom: 8px;
}

.policy-highlight p:last-child {
    margin-bottom: 0;
}

/* Actions */
.policy-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 768px) {
    .policy-page {
        padding: 100px 0 60px;
    }

    .policy-table {
        display: block;
        overflow-x: auto;
    }

    .policy-table th,
    .policy-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}
