:root {
    --bg-color: #000000;
    --card-bg: #252525;
    --card-bg-glass: rgba(37, 37, 37, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-color: #4facfe;
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --font-main: 'Outfit', sans-serif;
    --container-max-width: 900px;
    --border-radius: 28px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.7;
    /* Increased for better readability */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 10%, rgba(79, 172, 254, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(0, 242, 254, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Adjustments */
header {
    padding: clamp(40px, 8vh, 80px) 0;
    text-align: center;
    animation: fadeInDown 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo {
    font-size: clamp(2rem, 5vw, 3rem);
    /* Fluid font size */
    font-weight: 700;
    letter-spacing: -1.5px;
}

.logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Enhancements */
main {
    padding-bottom: clamp(60px, 10vh, 120px);
}

.policy-card {
    background: var(--card-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    padding: clamp(24px, 5vw, 60px);
    /* Fluid padding */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.last-updated {
    color: var(--text-secondary);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    margin-bottom: clamp(40px, 6vh, 60px);
    display: block;
}

.content-section {
    margin-bottom: clamp(30px, 5vh, 45px);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    color: var(--accent-color);
    margin-bottom: 16px;
    font-weight: 600;
}

p,
ul li {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 18px;
}

ul {
    list-style: none;
    margin-bottom: 20px;
}

ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
}

ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    padding: 14px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-weight: 500;
    margin-top: 10px;
}

.contact-link:hover {
    background: var(--accent-gradient);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.4);
    border-color: transparent;
}

/* Footer Polish */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    font-size: 0.9rem;
    color: rgba(176, 176, 176, 0.5);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Screen Specific Refinements */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .policy-card {
        border-radius: 20px;
        padding: 24px;
    }

    .contact-link {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .policy-card {
        transform: translateZ(0);
        /* For butter smooth rendering */
    }
}