:root {
    --bg: linear-gradient(120deg, #434b65, #000516);
    --card: #161a23;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --accent: #7c7cff;
}

* {
    box-sizing: border-box;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 400;
    user-select: none;
}

html {
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    font-weight: 700;
    font-size: 1.3rem;
}

.nav-links a {
    margin-left: 1.5rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
}

.nav-links .btn {
    text-align: center;
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    margin: 0.5rem;
    font-size: 0.95rem;
    min-width: 120px;
}

.nav-links .btn:hover {
    opacity: 0.8;
    outline: #f3f4f6 2px solid;
    animation: bold 0.3s forwards;
}

@keyframes bold {
    0% {
        font-weight: 400;
    }

    100% {
        font-weight: 600;
    }
}

.nav-links .btn:active {
    animation: click 0.5s ease;
}

@keyframes click {
    20% {
        transform: translateY(5px) translateX(5px);
    }
}

/* POLICY LAYOUT */
.policy-container {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.policy-card {
    background: var(--card);
    padding: 2.5rem 3rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 880px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.policy-card h1 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.effective-date {
    color: var(--muted);
    margin-top: 0;
    margin-bottom: 2rem;
}

.policy-card h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.policy-card p {
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.policy-card a {
    color: var(--accent);
    text-decoration: none;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

/* TABLET */
@media (max-width: 1024px) {
    .nav {
        padding: 1rem 1.25rem;
    }

    .policy-card {
        padding: 2rem;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .nav {
        flex-direction: row;
        gap: 0.5rem;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 0.5rem;
        align-items: center;
    }

    .nav-links a {
        margin-left: 0.5rem;
    }

    .policy-container {
        padding: 1rem;
    }

    .policy-card {
        padding: 1.5rem 1.25rem;
    }
}
