:root {
    --navy: #0a192f;
    --teal-glow: #64ffda;
    --text-white: #e6f1ff;
    --blue: #134aa8;
}

body {
    background-color: var(--navy);
    color: var(--text-white);
    line-height: 1.8;
    font-family: 'Segoe UI', Roboto, sans-serif;
    padding: 0;
    margin: 0;
}

.policy-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.version-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(19, 74, 168, 0.2);
    border: 1px solid var(--blue);
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.version-bar strong { color: var(--teal-glow); }

h1 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

h1 span { color: var(--teal-glow); }

h2 {
    font-size: 1.4rem;
    color: var(--teal-glow);
    margin-top: 35px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2 i { font-size: 1.1rem; opacity: 0.8; }

p {
    margin-bottom: 20px;
    color: #a8b2d1; /* Softer text for long reading */
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: #a8b2d1;
}

li { margin-bottom: 10px; }

a {
    color: var(--teal-glow);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

a:hover {
    text-shadow: 0 0 10px var(--teal-glow);
    text-decoration: underline;
}

.highlight-box {
    background: rgba(100, 255, 218, 0.05);
    border-left: 4px solid var(--teal-glow);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.close-btn {
    background: var(--blue);
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.close-btn:hover {
    background: var(--teal-glow);
    color: var(--navy);
}

@media (max-width: 768px) {
    .policy-container { margin: 20px; padding: 25px; }
    h1 { font-size: 1.8rem; }
}