/* ============================================
   Geraklaju — Sports-themed social games
   Outfit + Syne | Modern layout | Burger at 991px
   No "casino" or "slots" wording
   ============================================ */

:root {
    --gl-cyan: #0ea5e9;
    --gl-cyan-bright: #38bdf8;
    --gl-cyan-dark: #0284c7;
    --gl-white: #ffffff;
    --gl-bg: #0c1220;
    --gl-bg-elevated: #131b2e;
    --gl-surface: rgba(19, 27, 46, 0.92);
    --gl-border: rgba(255, 255, 255, 0.08);
    --gl-border-strong: rgba(255, 255, 255, 0.14);
    --gl-text: #e2e8f0;
    --gl-text-soft: #94a3b8;
    --gl-font: 'Outfit', system-ui, sans-serif;
    --gl-font-head: 'Syne', sans-serif;
    --gl-radius: 8px;
    --gl-radius-pill: 9999px;
    --gl-ease: cubic-bezier(0.33, 1, 0.68, 1);
    --gl-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --gl-transition: 0.28s var(--gl-ease);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: var(--gl-font);
    background: var(--gl-bg);
    color: var(--gl-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.gl-menu-open { overflow: hidden; }

/* ========== Background ========== */
.gl-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gl-bg__image {
    position: absolute;
    inset: 0;
    background: var(--gl-bg);
    background-image: url("../images/bg-sports.jpg");
    background-size: cover;
    background-position: center;
}

.gl-bg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg,
        rgba(12, 18, 32, 0.96) 0%,
        rgba(19, 27, 46, 0.94) 50%,
        rgba(12, 18, 32, 0.97) 100%
    );
}

.gl-bg__stripes {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 60px,
        var(--gl-cyan) 60px,
        var(--gl-cyan) 62px
    );
}

/* ========== Layout ========== */
.gl-header, .gl-section, .gl-footer, .gl-notice { position: relative; z-index: 1; }

/* ========== Modals ========== */
.gl-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.gl-modal.is-open { opacity: 1; visibility: visible; }

.gl-modal__box {
    background: var(--gl-bg-elevated);
    border: 1px solid var(--gl-border-strong);
    border-left: 4px solid var(--gl-cyan);
    border-radius: var(--gl-radius);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: var(--gl-shadow);
    transform: scale(0.96);
    transition: transform 0.3s var(--gl-ease);
}

.gl-modal.is-open .gl-modal__box { transform: scale(1); }

.gl-modal__icon { font-size: 2.75rem; display: block; margin-bottom: 0.5rem; }
.gl-modal__title {
    font-family: var(--gl-font-head);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gl-white);
    margin-bottom: 0.6rem;
}
.gl-modal__text { color: var(--gl-text-soft); margin-bottom: 1.5rem; font-size: 0.95rem; }
.gl-modal__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.gl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--gl-font);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--gl-radius-pill);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.gl-btn:hover { transform: translateY(-1px); }
.gl-btn--primary {
    background: var(--gl-cyan);
    color: var(--gl-white);
}
.gl-btn--primary:hover {
    background: var(--gl-cyan-bright);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}
.gl-btn--outline {
    background: transparent;
    color: var(--gl-text);
    border: 2px solid var(--gl-border-strong);
}

/* Game modal */
.gl-game-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    height: 100vh;
    height: 100dvh;
}

.gl-game-modal.is-open { opacity: 1; visibility: visible; }

.gl-game-modal__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    background: var(--gl-bg-elevated);
    border-bottom: 3px solid var(--gl-cyan);
    flex-shrink: 0;
}

.gl-game-modal__title { font-family: var(--gl-font-head); font-weight: 600; color: var(--gl-white); }
.gl-game-modal__close {
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
    line-height: 1;
    background: transparent;
    border: none;
    color: var(--gl-text);
    cursor: pointer;
    border-radius: var(--gl-radius);
    transition: background 0.2s;
}
.gl-game-modal__close:hover { background: rgba(255,255,255,0.08); }

.gl-game-modal__frame-wrap {
    flex: 1;
    min-height: 0;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gl-game-modal__frame-inner { width: 100%; height: 100%; position: relative; }
.gl-game-modal__frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--gl-radius);
    background: #000;
}

/* Cookie bar */
.gl-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
    background: var(--gl-bg-elevated);
    border-top: 3px solid var(--gl-cyan);
    transform: translateY(100%);
    transition: transform 0.35s var(--gl-ease);
}
.gl-cookie.is-visible { transform: translateY(0); }
.gl-cookie__text { font-size: 0.9rem; color: var(--gl-text-soft); }
.gl-cookie__text a { color: var(--gl-cyan-bright); text-decoration: underline; }
.gl-cookie__btn {
    padding: 10px 22px;
    background: var(--gl-cyan);
    color: var(--gl-white);
    border: none;
    border-radius: var(--gl-radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* ========== Header — burger at 991px ========== */
.gl-header {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 0;
    background: var(--gl-bg-elevated);
    border-bottom: 1px solid var(--gl-border);
}
.gl-header::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--gl-cyan);
}

.gl-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gl-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gl-white);
    font-family: var(--gl-font-head);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}
.gl-logo__icon { font-size: 1.5rem; }

.gl-nav__list {
    display: flex;
    list-style: none;
    gap: 32px;
}
.gl-nav__link {
    color: var(--gl-text-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}
.gl-nav__link:hover { color: var(--gl-cyan); }
.gl-nav__link:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--gl-cyan);
    border-radius: 1px;
}

.gl-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    color: var(--gl-text);
    cursor: pointer;
    padding: 8px;
}
.gl-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
}
.gl-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.gl-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gl-burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.gl-header__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px;
    background: var(--gl-bg-elevated);
    border-bottom: 1px solid var(--gl-border);
    flex-direction: column;
    gap: 8px;
}
.gl-header__dropdown.is-open { display: flex; }
.gl-header__dropdown a {
    color: var(--gl-text);
    text-decoration: none;
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--gl-border);
}
.gl-header__dropdown a:last-child { border-bottom: none; }

/* Burger menu at 991px */
@media (max-width: 991px) {
    .gl-nav { display: none; }
    .gl-burger { display: flex; }
}

/* ========== Hero ========== */
.gl-hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 40px 24px 48px;
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
}

.gl-hero__content {
    max-width: 640px;
    text-align: center;
    margin: 0 auto;
}

.gl-hero__badge {
    display: inline-block;
    padding: 6px 14px;
    background: transparent;
    border: 2px solid var(--gl-cyan);
    border-radius: var(--gl-radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gl-cyan-bright);
    margin-bottom: 1.25rem;
}

.gl-hero__title {
    font-family: var(--gl-font-head);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--gl-white);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.gl-hero__sub {
    font-size: 1.05rem;
    color: var(--gl-text-soft);
    margin-bottom: 1.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.gl-hero__emojis {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.gl-hero-emoji {
    font-size: 1.75rem;
    display: inline-block;
    animation: gl-emoji-bounce 2.2s ease-in-out infinite;
}
.gl-hero-emoji:nth-child(1) { animation-delay: 0s; }
.gl-hero-emoji:nth-child(2) { animation-delay: 0.15s; }
.gl-hero-emoji:nth-child(3) { animation-delay: 0.3s; }
.gl-hero-emoji:nth-child(4) { animation-delay: 0.45s; }

@keyframes gl-emoji-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.gl-hero__cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gl-cyan);
    color: var(--gl-white);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--gl-radius-pill);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.gl-hero__cta:hover {
    background: var(--gl-cyan-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

/* ========== Section ========== */
.gl-section {
    padding: 56px 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.gl-section__head { text-align: center; margin-bottom: 36px; }
.gl-section__title {
    font-family: var(--gl-font-head);
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--gl-white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.gl-section__sub { color: var(--gl-text-soft); font-size: 1rem; }

/* ========== Advantages (with images) ========== */
.gl-advantages__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
@media (min-width: 768px) {
    .gl-advantages__grid { grid-template-columns: repeat(3, 1fr); }
}

.gl-adv-card {
    background: var(--gl-surface);
    border: 1px solid var(--gl-border);
    border-left: 4px solid var(--gl-cyan);
    border-radius: var(--gl-radius);
    overflow: hidden;
    box-shadow: var(--gl-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.gl-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.gl-adv-card__img-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gl-bg);
}
.gl-adv-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gl-adv-card__title {
    font-family: var(--gl-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gl-white);
    margin: 1rem 1.25rem 0.5rem;
}
.gl-adv-card__text {
    font-size: 0.9rem;
    color: var(--gl-text-soft);
    padding: 0 1.25rem 1.25rem;
    line-height: 1.5;
}

/* ========== Featured game ========== */
.gl-featured__inner {
    display: grid;
    gap: 2rem;
    align-items: center;
    background: var(--gl-surface);
    border: 1px solid var(--gl-border);
    border-radius: var(--gl-radius);
    padding: 2rem;
}
@media (min-width: 768px) {
    .gl-featured__inner { grid-template-columns: 1fr 1.5fr; padding: 2.5rem; }
}

.gl-featured__media {
    text-align: center;
}
.gl-featured__media img {
    max-width: 200px;
    height: auto;
    border-radius: var(--gl-radius);
}
.gl-featured__content .gl-section__title { text-align: left; margin-bottom: 1rem; }
.gl-featured__text {
    color: var(--gl-text-soft);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.gl-featured__play { margin-top: 0; }

/* ========== Games grid ========== */
.gl-games__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) {
    .gl-games__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .gl-games__grid { grid-template-columns: repeat(3, 1fr); }
}

.gl-game-card {
    background: var(--gl-surface);
    border: 1px solid var(--gl-border);
    border-left: 4px solid var(--gl-cyan);
    border-radius: var(--gl-radius);
    overflow: hidden;
    box-shadow: var(--gl-shadow);
    transition: transform 0.25s, box-shadow 0.25s, border-left-color 0.25s;
}

.gl-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    border-left-color: var(--gl-cyan-bright);
}

.gl-game-card__thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--gl-bg);
}

.gl-game-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-game-card__body { padding: 18px; }
.gl-game-card__body h3 {
    font-family: var(--gl-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gl-white);
}
.gl-game-card__body p { font-size: 0.9rem; color: var(--gl-text-soft); margin-bottom: 14px; }

.gl-game-card__play {
    width: 100%;
    padding: 11px;
    background: var(--gl-cyan);
    color: var(--gl-white);
    border: none;
    border-radius: var(--gl-radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.gl-game-card__play:hover {
    background: var(--gl-cyan-bright);
    transform: scale(1.02);
}

.gl-games__note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gl-text-soft);
    margin-top: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== About (background image) ========== */
.gl-about.gl-about--bg {
    position: relative;
    overflow: hidden;
}
.gl-about__bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/about-sports.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.gl-about__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 18, 32, 0.88) 0%, rgba(12, 18, 32, 0.94) 100%);
}
.gl-about__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.gl-about__inner .gl-section__head { margin-bottom: 1rem; }
.gl-about__text {
    font-size: 1rem;
    color: var(--gl-text-soft);
    line-height: 1.7;
}

/* ========== Reviews (background image) ========== */
.gl-reviews.gl-reviews--bg {
    position: relative;
    overflow: hidden;
}
.gl-reviews__bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/reviews-sports.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.gl-reviews__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 18, 32, 0.85) 0%, rgba(12, 18, 32, 0.92) 100%);
}
.gl-reviews__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}
.gl-reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .gl-reviews__grid { grid-template-columns: repeat(3, 1fr); }
}

.gl-review-card {
    background: var(--gl-surface);
    border: 1px solid var(--gl-border);
    border-radius: var(--gl-radius);
    padding: 1.5rem;
    box-shadow: var(--gl-shadow);
}
.gl-review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gl-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.gl-review-card__name {
    font-family: var(--gl-font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gl-white);
    margin-bottom: 0.25rem;
}
.gl-review-card__stars {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}
.gl-review-card__text {
    font-size: 0.9rem;
    color: var(--gl-text-soft);
    line-height: 1.5;
}

/* ========== Contact (background image) ========== */
.gl-contact.gl-contact--bg {
    position: relative;
    overflow: hidden;
}
.gl-contact__bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/contact-sports.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.gl-contact__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 18, 32, 0.88) 0%, rgba(12, 18, 32, 0.94) 100%);
}
.gl-contact__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.gl-contact__inner .gl-section__head { margin-bottom: 1rem; }
.gl-contact__email {
    font-size: 1.1rem;
    color: var(--gl-cyan-bright);
    margin-bottom: 0.5rem;
}
.gl-contact__note { font-size: 0.9rem; color: var(--gl-text-soft); }

/* ========== Notice ========== */
.gl-notice {
    padding: 32px 24px 48px;
}

.gl-notice__inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--gl-surface);
    border: 1px solid var(--gl-border);
    border-left: 4px solid var(--gl-cyan);
    border-radius: var(--gl-radius);
}

.gl-notice__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.gl-notice__text {
    font-size: 0.95rem;
    color: var(--gl-text-soft);
    line-height: 1.55;
}

.gl-notice__text strong {
    color: var(--gl-text);
}

@media (max-width: 560px) {
    .gl-notice__inner { flex-direction: column; text-align: center; }
}

/* ========== Footer ========== */
.gl-footer {
    position: relative;
    padding: 0;
}

.gl-footer__stripe {
    height: 3px;
    background: var(--gl-cyan);
}

.gl-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 24px 24px;
}

.gl-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
}
@media (min-width: 640px) {
    .gl-footer__grid { grid-template-columns: 1.5fr 1fr; }
}
@media (min-width: 900px) {
    .gl-footer__grid { grid-template-columns: 1.2fr 1fr auto; }
}

.gl-footer__logo {
    font-family: var(--gl-font-head);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gl-white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.gl-footer__slogan {
    font-size: 0.9rem;
    color: var(--gl-text-soft);
    line-height: 1.5;
}

.gl-footer__links-title {
    display: block;
    font-weight: 600;
    color: var(--gl-text);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}
.gl-footer__links a {
    display: block;
    color: var(--gl-text-soft);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 0;
}
.gl-footer__links a:hover { color: var(--gl-cyan-bright); }

/* Footer badges — with filter */
.gl-footer__badges-wrap {
    margin-top: 0;
}
.gl-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.gl-footer__badge {
    display: inline-block;
    transition: transform 0.2s, opacity 0.2s;
}
.gl-footer__badge:hover {
    transform: scale(1.03);
    opacity: 1;
}
.gl-footer__badge-img {
    display: block;
    width: 120px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0.92) contrast(1.08) saturate(0.95);
    transition: filter 0.25s;
}
.gl-footer__badge:hover .gl-footer__badge-img {
    filter: brightness(1) contrast(1) saturate(1);
}

.gl-footer__disclaimer {
    padding: 20px 0;
    border-top: 1px solid var(--gl-border);
    margin-bottom: 20px;
}
.gl-footer__disclaimer p {
    font-size: 0.8rem;
    color: var(--gl-text-soft);
    line-height: 1.5;
}

.gl-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gl-border);
}
.gl-footer__copy, .gl-footer__age {
    font-size: 0.85rem;
    color: var(--gl-text-soft);
}

/* ========== Policy pages ========== */
.gl-page {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px 56px;
}
.gl-page__title {
    font-family: var(--gl-font-head);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--gl-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.gl-page__content {
    color: var(--gl-text-soft);
    line-height: 1.75;
    font-size: 0.95rem;
}
.gl-page__content h2 {
    font-family: var(--gl-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gl-text);
    margin: 1.75rem 0 0.6rem;
}
.gl-page__content p { margin-bottom: 1rem; }
.gl-page__content a { color: var(--gl-cyan-bright); text-decoration: underline; }
.gl-page__content ul { margin: 1rem 0 1rem 1.5rem; }
.gl-page__content li { margin-bottom: 0.35rem; }
