/* GDS Obuka — public glass design system */
:root {
    --gds-navy: #0c1a45;
    --gds-navy-mid: #152a6b;
    --gds-blue: #2f6fed;
    --gds-cyan: #3eb7ff;
    --gds-green: #2ecc71;
    --gds-red: #e74c3c;
    --gds-amber: #f39c12;
    --gds-text: #eef3ff;
    --gds-muted: rgba(238, 243, 255, 0.72);
    --gds-glass: rgba(255, 255, 255, 0.10);
    --gds-glass-strong: rgba(255, 255, 255, 0.16);
    --gds-glass-border: rgba(255, 255, 255, 0.22);
    --gds-shadow: 0 24px 60px rgba(4, 12, 40, 0.45);
    --gds-radius: 22px;
    --gds-radius-sm: 14px;
    --gds-font: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.gds-public {
    margin: 0;
    min-height: 100vh;
    font-family: var(--gds-font);
    color: var(--gds-text);
    background:
        radial-gradient(ellipse 95% 80% at 50% 42%, #163a78 0%, #0d2458 42%, #071433 78%, #040b1c 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

/* Constellation canvas — behind content, above the page gradient */
.gds-constellation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.gds-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    gap: 1.25rem;
}

.gds-shell--top {
    justify-content: flex-start;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.gds-glass {
    width: 100%;
    background: var(--gds-glass);
    border: 1px solid var(--gds-glass-border);
    border-radius: var(--gds-radius);
    box-shadow: var(--gds-shadow);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.gds-glass--strong {
    background: var(--gds-glass-strong);
}

.gds-card {
    max-width: 440px;
    padding: 2rem 1.75rem 1.75rem;
}

.gds-card--login {
    max-width: 460px;
    padding: 2.15rem 1.85rem 1.7rem;
    position: relative;
    overflow: hidden;
}

.gds-card--login::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -30%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62, 183, 255, 0.28), transparent 70%);
    pointer-events: none;
}

.gds-card--login::after {
    content: "";
    position: absolute;
    right: -20%;
    bottom: -35%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.18), transparent 70%);
    pointer-events: none;
}

.gds-card--login > * {
    position: relative;
    z-index: 1;
}

.gds-card--login .gds-brand {
    margin-bottom: 1.45rem;
}

.gds-card--login .gds-brand img {
    width: 158px;
    margin-bottom: 1rem;
}

.gds-card--login .gds-brand__title {
    font-size: 1.55rem;
}

.gds-card--login .gds-brand__sub {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.88rem;
}

.gds-lang-pick {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.35rem;
}

a.gds-lang-pick__btn,
a.gds-lang-pick__btn:link,
a.gds-lang-pick__btn:visited {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1.1rem;
    text-decoration: none;
    color: #ffffff !important;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    transition: transform .15s, border-color .15s, background .15s, box-shadow .15s;
}

a.gds-lang-pick__btn:hover {
    transform: translateY(-1px);
    border-color: rgba(62, 183, 255, 0.7);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 24px rgba(4, 12, 40, 0.28);
    color: #ffffff !important;
}

.gds-lang-pick__img {
    display: block;
    width: 42px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.gds-lang-pick__label {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
}

.gds-lang-pick__code {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.gds-login-form .gds-field {
    margin-bottom: 0.15rem;
}

.gds-login-form .gds-input {
    background: rgba(255, 255, 255, 0.92);
    color: #102259;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 20px rgba(4, 12, 40, 0.12);
}

.gds-login-form .gds-input::placeholder {
    color: rgba(16, 34, 89, 0.42);
}

.gds-login-form .gds-input:focus {
    background: #fff;
    border-color: rgba(46, 204, 113, 0.75);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.22), 0 8px 20px rgba(4, 12, 40, 0.12);
}

.gds-secure {
    margin-top: 1.15rem;
    padding: 1rem 1.05rem 0.95rem;
    border-radius: 16px;
    background: #f0fdf6;
    border: 1px solid #c6f0d8;
    color: #1a2f45;
    box-shadow: 0 8px 22px rgba(4, 40, 20, 0.08);
}

.gds-secure__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.gds-secure__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.gds-secure__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: #17324a;
    line-height: 1.2;
}

.gds-secure__caption {
    margin: 0.15rem 0 0;
    font-size: 0.78rem;
    color: #6b8094;
    line-height: 1.3;
}

.gds-secure__meta {
    margin: 0;
}

.gds-secure__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.32rem 0;
    font-size: 0.84rem;
}

.gds-secure__row dt {
    margin: 0;
    color: #6b8094;
}

.gds-secure__row dd {
    margin: 0;
    font-weight: 700;
    color: #17324a;
    text-align: right;
    word-break: break-all;
}

.gds-secure__session {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(23, 50, 74, 0.08);
}

.gds-secure__session-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.45rem;
    font-size: 0.86rem;
    font-weight: 700;
    color: #31485c;
}

.gds-secure__session-top strong {
    color: #2563eb;
    font-variant-numeric: tabular-nums;
}

.gds-secure__bar {
    height: 7px;
    border-radius: 999px;
    background: rgba(23, 50, 74, 0.1);
    overflow: hidden;
}

.gds-secure__bar > span {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #3b82f6 0%, #22c55e 100%);
    transition: width .9s linear;
}

.gds-secure__hint {
    margin: 0.5rem 0 0;
    font-size: 0.72rem;
    color: #7a8fa3;
    line-height: 1.35;
}

.gds-card--md {
    max-width: 640px;
}

.gds-card--lg {
    max-width: 760px;
}

.gds-card--xl {
    max-width: 960px;
    padding: 2.15rem 2rem 1.85rem;
}

.gds-brand {
    text-align: center;
    margin-bottom: 1.25rem;
}

.gds-brand img {
    width: 148px;
    height: auto;
    display: block;
    margin: 0 auto 0.85rem;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.gds-brand__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gds-cyan);
    font-weight: 700;
}

.gds-brand__title {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.25;
}

.gds-brand__sub {
    margin: 0.45rem 0 0;
    font-size: 0.92rem;
    color: var(--gds-muted);
    line-height: 1.45;
}

.gds-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gds-topbar--end {
    justify-content: flex-end;
}

.gds-topbar img {
    width: 132px;
    height: auto;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.3));
}

.gds-title {
    margin: 0.25rem 0 0.4rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

.gds-lead {
    margin: 0 0 1.25rem;
    text-align: center;
    font-size: 0.92rem;
    color: var(--gds-muted);
    line-height: 1.5;
}

.gds-lead--left {
    text-align: left;
}

.gds-label {
    display: block;
    margin: 0.7rem 0 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.gds-input,
.gds-select {
    width: 100%;
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(8, 18, 48, 0.45);
    color: #fff;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    outline: none;
    transition: border-color .18s, box-shadow .18s, background .18s;
}

.gds-select {
    background-image: linear-gradient(45deg, transparent 50%, #9fd4ff 50%),
        linear-gradient(135deg, #9fd4ff 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.4rem;
}

.gds-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.gds-input:focus,
.gds-select:focus {
    border-color: rgba(62, 183, 255, 0.85);
    box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.28);
    background: rgba(8, 18, 48, 0.62);
}

.gds-select option {
    color: #111;
}

.gds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    transition: transform .15s, box-shadow .15s, background .15s, opacity .15s;
}

.gds-btn:hover {
    transform: translateY(-1px);
}

.gds-btn:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

.gds-btn--primary {
    width: 100%;
    margin-top: 1rem;
    padding: 0.95rem 1.4rem;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(135deg, #1f8f4d 0%, #27ae60 55%, #2ecc71 100%);
    box-shadow: 0 10px 28px rgba(39, 174, 96, 0.35);
}

.gds-btn--primary:hover {
    box-shadow: 0 14px 32px rgba(39, 174, 96, 0.45);
}

a.gds-btn.gds-btn--apk,
a.gds-btn.gds-btn--apk:link,
a.gds-btn.gds-btn--apk:visited,
a.gds-btn.gds-btn--apk:hover,
a.gds-btn.gds-btn--apk:active {
    display: inline-flex;
    width: 100%;
    margin-top: 0.95rem;
    padding: 0.95rem 1.4rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    color: #fff !important;
    background: linear-gradient(135deg, #1f8f4d 0%, #27ae60 55%, #2ecc71 100%);
    box-shadow: 0 10px 28px rgba(39, 174, 96, 0.35);
    border: 0;
    border-radius: 999px;
    box-sizing: border-box;
}

a.gds-btn.gds-btn--apk:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(39, 174, 96, 0.45);
}

a.gds-btn.gds-btn--apk svg {
    flex-shrink: 0;
    color: #fff;
    fill: currentColor;
}

.gds-btn--navy {
    width: 100%;
    margin-top: 1rem;
    padding: 0.95rem 1.4rem;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(135deg, #132a70 0%, #1f4fb8 55%, #2f6fed 100%);
    box-shadow: 0 10px 28px rgba(31, 79, 184, 0.4);
}

.gds-btn--danger {
    flex: 1;
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    color: #fff;
    background: linear-gradient(135deg, #b83228 0%, #e74c3c 100%);
    box-shadow: 0 10px 24px rgba(231, 76, 60, 0.32);
}

.gds-btn--ghost {
    padding: 0.45rem 0.95rem;
    font-size: 0.75rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.gds-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

.gds-alert {
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.gds-alert--error {
    background: rgba(231, 76, 60, 0.18);
    border-color: rgba(231, 76, 60, 0.4);
    color: #ffd1cb;
}

.gds-alert--ok {
    background: rgba(46, 204, 113, 0.16);
    border-color: rgba(46, 204, 113, 0.4);
    color: #c9f7da;
}

.gds-alert--info {
    background: rgba(47, 111, 237, 0.16);
    border-color: rgba(47, 111, 237, 0.4);
    color: #d5e5ff;
}

.gds-footer-bar {
    max-width: 440px;
    width: 100%;
    padding: 0.85rem 1.1rem;
    text-align: center;
    font-size: 0.82rem;
    color: var(--gds-muted);
}

.gds-footer-bar a {
    color: #9fd4ff;
    font-weight: 700;
    text-decoration: none;
}

.gds-footer-bar a:hover {
    text-decoration: underline;
}

.gds-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    margin: 0 0 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.gds-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.gds-video__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
}

.gds-actions {
    display: flex;
    gap: 0.85rem;
}

/* Obuka — full viewport width */
.gds-shell--obuka {
    width: 100%;
    max-width: none;
    padding: 0;
    gap: 0;
    min-height: 100vh;
    min-height: 100dvh;
}

.gds-card--obuka {
    max-width: none;
    width: 100%;
    border-radius: 0;
    padding: 1rem 0 1.1rem;
}

.gds-card--obuka .gds-topbar,
.gds-card--obuka .gds-obuka-eyebrow,
.gds-card--obuka .gds-title,
.gds-card--obuka .gds-obuka-hint,
.gds-card--obuka .gds-actions {
    padding-left: 1rem;
    padding-right: 1rem;
}

.gds-card--obuka .gds-topbar {
    padding-top: 0.15rem;
}

.gds-card--obuka .gds-video {
    width: 100%;
    margin: 0 0 1rem;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}

/* Obuka — fixed no-scroll layout on phones */
@media (max-width: 767px) {
    html:has(body.gds-public--obuka),
    body.gds-public--obuka {
        height: 100%;
        height: 100dvh;
        overflow: hidden;
        overscroll-behavior: none;
    }

    body.gds-public--obuka {
        position: fixed;
        inset: 0;
        width: 100%;
    }

    .gds-shell--obuka {
        height: 100%;
        min-height: 0;
        padding: 0;
        gap: 0;
        overflow: hidden;
    }

    .gds-card--obuka {
        display: flex;
        flex-direction: column;
        max-width: none;
        width: 100%;
        height: 100%;
        min-height: 0;
        padding: 0.65rem 0 0.75rem;
        overflow: hidden;
        border-radius: 0;
    }

    .gds-card--obuka .gds-topbar,
    .gds-card--obuka .gds-obuka-eyebrow,
    .gds-card--obuka .gds-title,
    .gds-card--obuka .gds-obuka-hint,
    .gds-card--obuka .gds-actions {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .gds-card--obuka .gds-topbar {
        margin-bottom: 0.35rem;
        flex-shrink: 0;
    }

    .gds-card--obuka .gds-btn--ghost {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
    }

    .gds-card--obuka .gds-obuka-eyebrow {
        text-align: center;
        margin-bottom: 0.15rem;
        font-size: 0.65rem;
        flex-shrink: 0;
    }

    .gds-card--obuka .gds-title {
        margin: 0 0 0.25rem;
        font-size: 0.95rem;
        letter-spacing: 0.03em;
        flex-shrink: 0;
    }

    .gds-card--obuka .gds-obuka-hint {
        margin: 0 0 0.55rem;
        font-size: 0.78rem;
        line-height: 1.35;
        flex-shrink: 0;
    }

    .gds-card--obuka .gds-video {
        flex: 1 1 auto;
        min-height: 0;
        aspect-ratio: auto;
        margin: 0 0 0.7rem;
        border-radius: 0;
    }

    .gds-card--obuka .gds-actions {
        flex-shrink: 0;
        gap: 0.55rem;
    }

    .gds-card--obuka .gds-actions .gds-btn--danger {
        padding: 0.7rem 0.85rem;
        font-size: 0.88rem;
    }
}

.gds-q-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0.75rem;
}

.gds-q {
    margin: 0;
    min-width: 0;
    padding: 1rem 1.05rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 18, 48, 0.38);
}

.gds-q__title {
    margin: 0 0 0.55rem;
    padding: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.gds-option {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 0.55rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: background .15s, border-color .15s;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.gds-option:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(62, 183, 255, 0.4);
}

.gds-option input {
    margin-top: 0.15rem;
    accent-color: #2ecc71;
}

.gds-section {
    margin: 1.1rem 0 0.35rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--gds-cyan);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.gds-meta {
    display: grid;
    gap: 0.35rem;
}

.gds-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.gds-meta-row dt {
    color: var(--gds-muted);
    font-weight: 600;
}

.gds-meta-row dd {
    margin: 0;
    text-align: right;
    color: #fff;
    font-weight: 600;
}

.gds-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .gds-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .gds-card {
        padding: 2.25rem 2rem 2rem;
    }

    .gds-brand__title {
        font-size: 1.6rem;
    }
}

.gds-lang-flags {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0.55rem;
    margin-top: 1.35rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

a.gds-lang-flag,
a.gds-lang-flag:link,
a.gds-lang-flag:visited {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex: 1;
    max-width: 110px;
    min-height: 44px;
    padding: 0.55rem 0.65rem;
    text-decoration: none;
    color: #ffffff !important;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    transition: transform .15s, border-color .15s, background .15s, box-shadow .15s;
}

a.gds-lang-flag:hover {
    transform: translateY(-1px);
    border-color: rgba(62, 183, 255, 0.65);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff !important;
}

a.gds-lang-flag.is-active {
    border-color: rgba(46, 204, 113, 0.85);
    background: rgba(46, 204, 113, 0.22);
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.28);
    color: #ffffff !important;
}

.gds-lang-flag__img {
    display: block;
    width: 26px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.gds-lang-flag__code {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #ffffff;
    line-height: 1;
}

.gds-lang-flags--compact {
    margin-top: 0;
    margin-bottom: 1.35rem;
    padding-top: 0;
    border-top: 0;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gds-legal {
    color: var(--gds-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    text-align: left;
}

.gds-legal__meta {
    margin: 0 0 1.5rem;
    padding: 0.85rem 1rem;
    border-radius: var(--gds-radius-sm);
    background: rgba(8, 18, 48, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.gds-legal__meta .gds-meta-row:last-child {
    border-bottom: 0;
}

.gds-legal__meta a {
    color: var(--gds-cyan);
    text-decoration: none;
}

.gds-legal__meta a:hover {
    text-decoration: underline;
}

.gds-legal__section {
    margin-bottom: 1.35rem;
}

.gds-legal__section h2 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
}

.gds-legal__section p {
    margin: 0 0 0.55rem;
}

.gds-legal__section ul {
    margin: 0;
    padding-left: 1.15rem;
}

.gds-legal__section li {
    margin-bottom: 0.4rem;
}

.gds-legal__section li::marker {
    color: var(--gds-cyan);
}

.gds-legal__note {
    margin: 0.5rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: var(--gds-radius-sm);
    border: 1px solid rgba(62, 183, 255, 0.28);
    background: rgba(47, 111, 237, 0.14);
    color: rgba(238, 243, 255, 0.88);
    font-size: 0.86rem;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .gds-glass {
        background: rgba(14, 28, 70, 0.88);
    }
}
