* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --secondary-color: #7c3aed;
    --text-color: #e2e8f0;
    --text-light: #94a3b8;
    --text-muted: #64748b;
    --bg-dark: #020617;
    --bg-darker: #0f172a;
    --bg-card: #1e293b;
    --border-color: #334155;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #818cf8, #c084fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

/* Policy Content */
.policy-content {
    padding: 80px 0 100px;
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
}

.last-updated {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.policy-body {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1s ease 0.2s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-color);
    letter-spacing: -0.5px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.policy-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--text-light);
}

.policy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.policy-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
}

.policy-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 18px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.footer-links {
    font-size: 14px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0 4px;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-content {
        padding: 60px 0 80px;
    }
    
    .policy-header h1 {
        font-size: 36px;
    }
    
    .policy-body {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .policy-section h2 {
        font-size: 24px;
    }
    
    .policy-section h3 {
        font-size: 18px;
    }
    
    .policy-section p,
    .policy-section ul li {
        font-size: 15px;
    }
}
