/* Global Reset & Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #0d1117;
    --card-bg: rgba(22, 27, 34, 0.7);
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --accent-cyan: #00e5ff;
    --accent-green: #00ff00;
    --accent-glow: rgba(0, 229, 255, 0.3);
    --border-color: rgba(48, 54, 61, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 0, 0.05) 0%, transparent 40%),
        linear-gradient(to bottom, #0d1117, #06090c);
    min-height: 100vh;
}

/* Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Section */
header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -1px;
    text-shadow: 0 0 30px var(--accent-glow);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Content Sections */
.policy-section {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.2);
}

h2 {
    color: var(--accent-cyan);
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

h2::before {
    content: '#';
    color: var(--accent-green);
    margin-right: 10px;
    font-weight: 300;
    opacity: 0.7;
}

h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

p,
ul {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

ul {
    list-style-position: inside;
    padding-left: 10px;
}

li {
    margin-bottom: 8px;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1px dashed rgba(0, 229, 255, 0.3);
}

a:hover {
    color: var(--accent-green);
    border-bottom-color: var(--accent-green);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-email {
    color: var(--accent-green);
    font-weight: 600;
    word-break: break-all;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    .gradient-text {
        font-size: 2rem;
    }

    .policy-section {
        padding: 20px;
    }
}