:root {
    --bg-color: #08080A;
    --text-primary: #EDEDED;
    --text-secondary: #9CA3AF;
    --accent-red: #FF3B30;
    --accent-blue: #0A84FF;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.06);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Glows */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.red-glow {
    top: -200px;
    left: -200px;
    background: var(--accent-red);
}

.blue-glow {
    bottom: -200px;
    right: -200px;
    background: var(--accent-blue);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

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

.game-logo {
    width: 160px;
    height: auto;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-logo:hover {
    transform: scale(1.05);
}

header .game-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 4px;
    animation: stroop-colors 4s infinite;
    text-shadow: 0 0 15px currentColor;
}

header .policy-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-bottom: 12px;
    justify-content: center;
}

@keyframes stroop-colors {
    0%, 100% { color: var(--accent-red); }
    25% { color: var(--accent-blue); }
    50% { color: #2AFF5E; /* Neon Green */ }
    75% { color: #FFD52A; /* Neon Yellow */ }
}

.last-updated {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

/* Typography & Layout */
h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 24px 0 12px 0;
}

p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
}

strong {
    color: #fff;
    font-weight: 500;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #fff;
}

/* Policy Cards (Glassmorphism) */
.policy-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.policy-card.visible, .contact-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Lists */
.clean-list {
    list-style: none;
}

.clean-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.clean-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-blue);
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.service-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.service-item h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.service-item p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.service-item a {
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Card */
.contact-card {
    text-align: center;
    background: linear-gradient(145deg, rgba(10, 132, 255, 0.05), rgba(0, 0, 0, 0));
    border: 1px solid rgba(10, 132, 255, 0.2);
    border-radius: 16px;
    padding: 50px 40px;
    opacity: 0;
    transform: translateY(20px);
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 32px;
    background-color: var(--accent-blue);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.3);
}

.button:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 132, 255, 0.5);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
    color: #666;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 600px) {
    header h1 { font-size: 2rem; }
    .policy-card { padding: 30px 20px; }
    .service-grid { grid-template-columns: 1fr; }
    .glow { width: 300px; height: 300px; }
}
