* {
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    font-family: 'Inter', sans-serif;
    background: #080a12;
    color: #e6eef7;
}

body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(79, 195, 247, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(129, 199, 132, 0.12), transparent 24%),
        linear-gradient(180deg, #07090f 0%, #0d1220 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.08), transparent 42%, rgba(129, 199, 132, 0.08));
    pointer-events: none;
}

a {
    color: #4fc3f7;
    text-decoration: none;
}

a:hover {
    color: #81c784;
}

.terms-shell {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 32px 20px 56px;
    position: relative;
    z-index: 1;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 44px;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
}

.brand strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    background: linear-gradient(135deg, #4fc3f7, #81c784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand span {
    color: #a2cfe0;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.back-link {
    border: 1px solid rgba(79, 195, 247, 0.55);
    border-radius: 8px;
    color: #e6eef7;
    padding: 10px 14px;
    font-size: 0.92rem;
    font-weight: 700;
}

.back-link:hover {
    background: rgba(79, 195, 247, 0.12);
}

.hero {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 28px;
    margin-bottom: 30px;
}

.eyebrow {
    color: #81c784;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

h1 {
    color: #f8fbff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.25rem, 6vw, 4.2rem);
    line-height: 1.05;
    margin: 0 0 18px;
}

.intro {
    color: #a7b6ca;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 760px;
    margin: 0;
}

.notice {
    background: rgba(12, 15, 26, 0.88);
    border: 1px solid rgba(79, 195, 247, 0.22);
    border-left: 4px solid #4fc3f7;
    border-radius: 8px;
    color: #d9e8f4;
    line-height: 1.7;
    margin: 28px 0;
    padding: 18px 20px;
}

.terms-content {
    display: grid;
    gap: 22px;
}

section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 22px;
}

section:last-child {
    border-bottom: 0;
}

h2 {
    color: #4fc3f7;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    margin: 0 0 12px;
}

p,
li {
    color: #b8c7d8;
    line-height: 1.75;
}

p {
    margin: 0 0 12px;
}

ul {
    margin: 0;
    padding-left: 22px;
}

li + li {
    margin-top: 8px;
}

.meta {
    color: #8ea8c1;
    font-size: 0.92rem;
    margin-top: 34px;
}

@media (max-width: 620px) {
    .terms-shell {
        padding: 24px 16px 44px;
    }

    .topbar {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 34px;
    }

    .back-link {
        width: 100%;
        text-align: center;
    }
}
