:root {
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-muted: #ffffff;
    --transition-speed: 0.6s;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Effect */
body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -2;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

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

/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    margin-bottom: 20px;
}

.logo-text {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Content Card */
.content-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intro {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--text-white);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.policy-section p {
    margin-bottom: 15px;
    font-weight: 300;
    color: var(--text-muted);
}

.policy-section ul {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 10px;
}

.policy-section li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-weight: 300;
}

.policy-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 40px;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-speed) cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 40px 15px;
    }

    .header h1 {
        font-size: 2.2rem;
    }

    .content-card {
        padding: 25px;
    }

    .intro {
        font-size: 1.1rem;
    }
}