@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@500;700&display=swap');

body {
    font-family: "League Spartan", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1f1f52;
}
header {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 2em;
    height: 80px;
    text-align: left;
    position: relative;
}
.logo {
    width: 50px;
    border-radius: 5%;
    margin: 0;
    display: block;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    position: absolute;
    right: 1em;
    top: 1.5em;
    cursor: pointer;
    z-index: 10;
}
nav {
    display: flex;
    gap: 1em;
    align-items: center;
    margin: 0 auto;
    justify-content: flex-end;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
}
nav a {
    color: #2d2d7b;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    padding: 0.3em 0.7em;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
    font-family: Arial, sans-serif;
}
nav a:hover,
nav a:focus,
nav a.active {
    background: #2d2d7b;
    color: #fff;
    text-decoration: none;
}

/* ── Privacy content ──────────────────────────────── */
.privacy-section {
    padding: 3em 1.5em 4em;
}
.privacy-inner {
    max-width: 780px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2.5em 3em;
}
.privacy-inner h1 {
    margin: 0 0 0.2em 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: #f1f1ff;
}
.updated {
    font-size: 0.82rem;
    color: #7878aa;
    margin: 0 0 2em 0;
}
.privacy-inner h2 {
    margin: 1.8em 0 0.5em 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #d0d0ff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0.3em;
}
.privacy-inner p {
    margin: 0 0 0.8em 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.6;
    color: #c0c0e8;
}
.privacy-inner ul {
    margin: 0.4em 0 0.8em 0;
    padding-left: 1.4em;
}
.privacy-inner li {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.6;
    color: #c0c0e8;
    margin-bottom: 0.3em;
}
.privacy-inner strong {
    color: #e8e8ff;
}
.privacy-inner a {
    color: #aaaaff;
    text-decoration: none;
    border-bottom: 1px solid rgba(170,170,255,0.35);
    transition: color 0.15s, border-color 0.15s;
}
.privacy-inner a:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* ── Mobile ≤ 700px ──────────────────────────────── */
@media (max-width: 700px) {
    header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 80px;
        padding: 0 1em;
        position: relative;
    }
    .logo { margin: 0; }
    .menu-toggle {
        display: block;
        position: static;
        margin-left: auto;
        z-index: 30;
    }
    nav {
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 80px;
        left: 10%;
        width: 80%;
        box-shadow: 0 2px 10px rgba(16,15,15,0.1);
        border-radius: 0 0 10px 10px;
        transform: translateY(-30px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s cubic-bezier(.4,2,.6,1), opacity 0.3s;
        z-index: 20;
        margin: 0;
        display: flex;
        visibility: hidden;
    }
    nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }
    .privacy-section {
        padding: 2em 1em 3em;
    }
    .privacy-inner {
        padding: 1.5em 1.2em;
    }
    .privacy-inner h1 {
        font-size: 1.4rem;
    }
}
