:root {
    --bg-color: #050511;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent-color: #6366f1; /* Indigo */
    --accent-glow: #818cf8;
    --card-bg: rgba(30, 41, 59, 0.4);
    --card-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    opacity: 0.6;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out;
}

.globe-1 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(0,0,0,0) 70%);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.globe-2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, rgba(0,0,0,0) 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.globe-3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, rgba(0,0,0,0) 70%);
    top: 40%;
    left: 40%;
    opacity: 0.5;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -50px); }
    66% { transform: translate(-20px, 20px); }
}

/* Layout */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    padding: 40px 0;
    text-align: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo .accent {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
}

/* Card Styling */
.privacy-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.doc-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-glow);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.update-date {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 24px;
    margin-top: 40px;
    letter-spacing: -0.5px;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5em;
    font-size: 1.1rem;
}

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

.lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border), transparent);
    margin: 40px 0;
}

/* Grid for Info */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.info-item .icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.info-item h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.info-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* List Styling */
.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    position: relative;
    padding-left: 32px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.styled-list li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 8px;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

/* Button */
.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-color), #4f46e5);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
    filter: brightness(1.1);
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 40px 0 80px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-footer {
    margin-top: 10px;
    opacity: 0.7;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Responsive */
@media (max-width: 768px) {
    .privacy-card {
        padding: 30px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}
