:root {
    --primary: #FFD700; /* Gold/Yellow accents */
    --bg-dark: #0A0A0B;
    --card-bg: rgba(25, 25, 28, 0.7);
    --text-main: #E1E1E6;
    --text-dim: #A8A8B3;
    --accent-glow: rgba(255, 215, 0, 0.15);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

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

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
}

.blob {
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse 15s infinite alternate;
}

.blob-1 {
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -10vw;
    right: -10vw;
}

.blob-2 {
    background: radial-gradient(circle, #4A00E0 0%, transparent 70%);
    bottom: -10vw;
    left: -10vw;
}

@keyframes pulse {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5vw, 5vw) scale(1.1); }
}

/* Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #000;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, var(--text-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

main {
    padding: 4rem 0;
}

.policy-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: 2.5rem;
    font-weight: 850;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    color: #fff;
}

.effective-date {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    display: block;
    font-weight: 500;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: var(--primary);
    letter-spacing: -0.3px;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style-type: none;
}

ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    border-bottom: 1px solid var(--primary);
    opacity: 0.8;
}

.links-list li {
    padding-left: 0;
}

.links-list li::before {
    display: none;
}

.links-list li a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-color);
}

.links-list li a:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary);
}

.contact-link {
    font-weight: 600;
    text-decoration: underline;
}

.policy-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 640px) {
    .policy-card {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}
