/* ============================================
   Gel Berlin — Unique Swiss-Alpine identity
   Syne + DM Sans | Diagonal stripes | Sharp cards | Pill CTAs
   No Outfit/Playfair, no floating emojis bg, no glow orbs
   ============================================ */

:root {
    --gb-red: #E53935;
    --gb-red-bright: #FF5252;
    --gb-red-dark: #B71C1C;
    --gb-white: #FFFFFF;
    --gb-snow: #F5F7FA;
    --gb-bg: #0d1218;
    --gb-bg-elevated: #141c24;
    --gb-surface: rgba(20, 28, 36, 0.92);
    --gb-border: rgba(255, 255, 255, 0.08);
    --gb-border-strong: rgba(255, 255, 255, 0.14);
    --gb-text: #e8eaed;
    --gb-text-soft: #9aa0a6;
    --gb-font: 'DM Sans', system-ui, sans-serif;
    --gb-font-head: 'Syne', sans-serif;
    --gb-radius: 6px;
    --gb-radius-pill: 999px;
    --gb-ease: cubic-bezier(0.33, 1, 0.68, 1);
    --gb-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --gb-transition: 0.28s var(--gb-ease);
}

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

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

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

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

/* ========== Unique background: diagonal stripes + gradient, no orbs/emojis ========== */
.gb-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gb-bg__base {
    position: absolute;
    inset: 0;
    background: var(--gb-bg);
    background-image: url("../images/bg-swiss-games.jpg");
    background-size: cover;
    background-position: center;
}

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

.gb-bg__accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg,
        rgba(13, 18, 24, 0.97) 0%,
        rgba(20, 25, 35, 0.94) 50%,
        rgba(13, 18, 24, 0.96) 100%
    );
}

/* Policy pages: same bg if they use old class names */
.gb-bg__image {
    position: absolute;
    inset: 0;
    background: var(--gb-bg);
}
.gb-bg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(13, 18, 24, 0.96) 0%, rgba(13, 18, 24, 0.98) 100%);
}
.gb-bg__cross {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background: repeating-linear-gradient(-55deg, transparent, transparent 50px, var(--gb-red) 50px, var(--gb-red) 52px);
}

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

/* ========== Modals — sharp corners, red focus ========== */
.gb-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;
}

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

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

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

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

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

.gb-btn:hover { transform: translateY(-1px); }
.gb-btn--primary {
    background: var(--gb-red);
    color: var(--gb-white);
}
.gb-btn--primary:hover {
    background: var(--gb-red-bright);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}
.gb-btn--outline {
    background: transparent;
    color: var(--gb-text);
    border: 2px solid var(--gb-border-strong);
}

/* Game modal */
.gb-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;
}

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

.gb-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(--gb-bg-elevated);
    border-bottom: 3px solid var(--gb-red);
    flex-shrink: 0;
}

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

.gb-game-modal__frame-wrap {
    flex: 1;
    min-height: 0;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gb-game-modal__frame-inner { width: 100%; height: 100%; position: relative; }
.gb-game-modal__frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--gb-radius);
    background: #000;
}
@media (max-width: 768px) {
    .gb-game-modal__frame-wrap { padding: 8px; padding-bottom: max(8px, env(safe-area-inset-bottom)); }
    .gb-game-modal__frame-inner { max-height: 100%; aspect-ratio: 16 / 9; }
}

/* Cookie bar — pill button */
.gb-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(--gb-bg-elevated);
    border-top: 3px solid var(--gb-red);
    transform: translateY(100%);
    transition: transform 0.35s var(--gb-ease);
}
.gb-cookie.is-visible { transform: translateY(0); }
.gb-cookie__text { font-size: 0.9rem; color: var(--gb-text-soft); }
.gb-cookie__text a { color: var(--gb-red-bright); text-decoration: underline; }
.gb-cookie__btn {
    padding: 10px 22px;
    background: var(--gb-red);
    color: var(--gb-white);
    border: none;
    border-radius: var(--gb-radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* ========== Header — red top bar, minimal ========== */
.gb-header {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 0;
    background: var(--gb-bg-elevated);
    border-bottom: 1px solid var(--gb-border);
}
.gb-header::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--gb-red);
}

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

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

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

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

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

@media (max-width: 768px) {
    .gb-nav { display: none; }
    .gb-burger { display: flex; }
}

/* ========== Hero — split layout, visual block right ========== */
.gb-hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 40px 24px 48px;
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
}

.gb-hero__visual {
    display: none;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: min(300px, 34vw);
    height: min(300px, 34vw);
    max-width: 280px;
    max-height: 280px;
    background: url("../images/hero-pirate.webp") center center / contain no-repeat;
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    animation: gb-hero-block 5s ease-in-out infinite;
}
@keyframes gb-hero-block {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-51%) scale(1.02); }
}

@media (min-width: 900px) {
    .gb-hero { padding: 48px 24px 56px; }
    .gb-hero__content { max-width: 52%; }
    .gb-hero__visual { display: block; }
    .gb-hero__badge { margin-bottom: 1rem; }
}

.gb-hero__content {
    max-width: 640px;
    text-align: center;
}
@media (min-width: 900px) {
    .gb-hero__content { text-align: left; }
}

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

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

.gb-hero__sub {
    font-size: 1.05rem;
    color: var(--gb-text-soft);
    margin-bottom: 1.5rem;
    max-width: 520px;
}
@media (min-width: 900px) {
    .gb-hero__sub { margin-left: 0; }
}

.gb-hero__emojis {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
@media (min-width: 900px) {
    .gb-hero__emojis { justify-content: flex-start; }
}

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

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

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

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

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

/* ========== Game cards — left red border, sharp radius ========== */
.gb-slider-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.gb-slider {
    flex: 1;
    overflow: hidden;
    border-radius: var(--gb-radius);
}

.gb-slider__track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s var(--gb-ease);
    padding: 6px 0;
}

.gb-game-card {
    flex: 0 0 calc(100% - 48px);
    max-width: 360px;
    background: var(--gb-surface);
    border: 1px solid var(--gb-border);
    border-left: 4px solid var(--gb-red);
    border-radius: var(--gb-radius);
    overflow: hidden;
    box-shadow: var(--gb-shadow);
    transition: transform 0.25s, box-shadow 0.25s, border-left-color 0.25s;
}

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

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

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

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

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

/* Slider buttons — hidden on mobile */
.gb-slider-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--gb-radius);
    border: 1px solid var(--gb-border-strong);
    background: var(--gb-surface);
    color: var(--gb-text);
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gb-slider-btn:hover {
    background: var(--gb-red);
    color: var(--gb-white);
    border-color: var(--gb-red);
}

/* Unique dots: line segments instead of circles */
.gb-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.gb-slider-dot {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: var(--gb-border-strong);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}
.gb-slider-dot.is-active {
    background: var(--gb-red);
    transform: scaleX(1.2);
}

@media (max-width: 768px) {
    .gb-slider-btn { display: none !important; }
    .gb-slider-wrap { gap: 0; }
    .gb-slider {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }
    .gb-slider__track {
        transform: none !important;
        padding: 8px 16px;
    }
    .gb-game-card {
        flex: 0 0 84%;
        max-width: 84%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}

@media (min-width: 900px) {
    .gb-game-card { flex: 0 0 calc(50% - 10px); max-width: none; }
}
@media (min-width: 1100px) {
    .gb-game-card { flex: 0 0 calc(33.333% - 14px); }
}

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

/* ========== Schweiz-Hinweis (unique block) ========== */
.gb-ch-notice {
    padding: 32px 24px 48px;
}

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

.gb-ch-notice__flag {
    font-size: 2.5rem;
    flex-shrink: 0;
}

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

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

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

/* ========== Viktorina (Spiele-Viktorina) — unique quiz block ========== */
.gb-viktorina {
    max-width: 560px;
    margin: 0 auto;
}

.gb-viktorina__progress-wrap {
    margin-bottom: 1.25rem;
}

.gb-viktorina__step {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gb-text-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.gb-viktorina__bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--gb-radius-pill);
    overflow: hidden;
}

.gb-viktorina__bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gb-red), var(--gb-red-bright));
    border-radius: var(--gb-radius-pill);
    transition: width 0.4s var(--gb-ease);
}

.gb-viktorina__card {
    background: var(--gb-surface);
    border: 1px solid var(--gb-border);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    box-shadow: var(--gb-shadow);
}

.gb-viktorina__question-block {
    display: block;
}

.gb-viktorina__q-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gb-red-bright);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.gb-viktorina__q-text {
    font-family: var(--gb-font-head);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gb-white);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.gb-viktorina__options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gb-viktorina__opt {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gb-border);
    border-radius: 10px;
    color: var(--gb-text);
    font-size: 1rem;
    font-family: var(--gb-font);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.gb-viktorina__opt:hover:not(:disabled) {
    background: rgba(229, 57, 53, 0.08);
    border-color: rgba(229, 57, 53, 0.4);
    transform: translateX(4px);
}

.gb-viktorina__opt:disabled {
    cursor: default;
    opacity: 0.9;
}

.gb-viktorina__opt-letter {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gb-text-soft);
}

.gb-viktorina__opt.correct .gb-viktorina__opt-letter {
    background: rgba(46, 204, 113, 0.25);
    color: #2ecc71;
}

.gb-viktorina__opt.wrong .gb-viktorina__opt-letter {
    background: rgba(229, 57, 53, 0.2);
    color: var(--gb-red-bright);
}

.gb-viktorina__opt.correct {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.4);
}

.gb-viktorina__opt.wrong {
    background: rgba(229, 57, 53, 0.08);
    border-color: rgba(229, 57, 53, 0.35);
}

.gb-viktorina__opt-text {
    flex: 1;
}

.gb-viktorina__result {
    text-align: center;
    padding: 1rem 0 0.5rem;
}

.gb-viktorina__result-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.gb-viktorina__result-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gb-text);
    margin-bottom: 1rem;
}

.gb-viktorina__next {
    margin-top: 0.25rem;
}

/* ========== About — same left border as cards ========== */
.gb-about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gb-about-card {
    background: var(--gb-surface);
    border: 1px solid var(--gb-border);
    border-left: 4px solid var(--gb-red);
    border-radius: var(--gb-radius);
    padding: 26px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.gb-about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gb-shadow);
}

.gb-about-card__icon { font-size: 2.25rem; display: block; margin-bottom: 12px; }
.gb-about-card h3 {
    font-family: var(--gb-font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gb-white);
}
.gb-about-card p { font-size: 0.95rem; color: var(--gb-text-soft); }

/* ========== Footer — unique multi-column structure ========== */
.gb-footer {
    margin-top: 48px;
    padding: 0;
    background: var(--gb-bg-elevated);
    border-top: 1px solid var(--gb-border);
}

.gb-footer__stripe {
    display: block;
    height: 4px;
    background: var(--gb-red);
}

.gb-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 20px;
}

/* 3-column grid: Brand | Rechtliches | Badges */
.gb-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px 40px;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .gb-footer__grid {
        grid-template-columns: 1fr auto auto;
        align-items: start;
    }
}

.gb-footer__brand {
    max-width: 280px;
}

.gb-footer__logo {
    font-family: var(--gb-font-head);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gb-white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 6px;
}
.gb-footer__logo:hover { color: var(--gb-red-bright); }

.gb-footer__slogan {
    font-size: 0.85rem;
    color: var(--gb-text-soft);
    line-height: 1.5;
}

.gb-footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gb-footer__links-title {
    font-family: var(--gb-font-head);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gb-text-soft);
    margin-bottom: 4px;
}

.gb-footer__links a {
    color: var(--gb-text-soft);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.gb-footer__links a:hover { color: var(--gb-red); }

.gb-footer__badges-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gb-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.gb-footer__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--gb-radius);
    border: 1px solid var(--gb-border);
    transition: background 0.2s;
}
.gb-footer__badge:hover { background: rgba(255, 255, 255, 0.1); }
.gb-footer__badge img {
    display: block;
    height: 38px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

.gb-footer__disclaimer {
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--gb-radius);
    border-left: 3px solid var(--gb-red);
    font-size: 0.8rem;
    color: var(--gb-text-soft);
    line-height: 1.55;
    margin-bottom: 20px;
}

.gb-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gb-border);
}

.gb-footer__copy {
    font-size: 0.8rem;
    color: var(--gb-text-soft);
}
.gb-footer__geo {
    font-size: 0.8rem;
    color: var(--gb-text-soft);
}
.gb-footer__geo::before {
    content: '🇨🇭 ';
}

/* Policy pages: old footer structure fallback (single column) */
.gb-footer__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}
.gb-footer__nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.gb-footer__nav a { color: var(--gb-text-soft); text-decoration: none; font-size: 0.9rem; }
.gb-footer__nav a:hover { color: var(--gb-red); }
.gb-footer .gb-footer__inner:has(.gb-footer__top) { text-align: center; }
.gb-footer .gb-footer__inner:has(.gb-footer__top) .gb-footer__disclaimer { margin-left: auto; margin-right: auto; }
.gb-footer .gb-footer__inner:has(.gb-footer__top) .gb-footer__badges { justify-content: center; margin-bottom: 14px; }
.gb-footer .gb-footer__inner:has(.gb-footer__top) .gb-footer__copy { margin-top: 0; }

/* ========== Policy pages ========== */
.gb-page {
    position: relative;
    z-index: 1;
    padding: 48px 24px 80px;
    max-width: 720px;
    margin: 0 auto;
}

.gb-page__title {
    font-family: var(--gb-font-head);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--gb-white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--gb-red);
}

.gb-page__content {
    color: var(--gb-text-soft);
    line-height: 1.75;
}
.gb-page__content h2 {
    font-family: var(--gb-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gb-white);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}
.gb-page__content p { margin-bottom: 1rem; }
.gb-page__content a { color: var(--gb-red-bright); text-decoration: underline; }
.gb-page__content ul { margin: 1rem 0 1rem 1.5rem; }

/* Scroll reveal (GSAP) */
.gb-reveal { opacity: 0; transform: translateY(28px); }
