

/* ====== CSS VARIABLES ====== */
:root {
    --bg: #0A1A33;
    --bg-card: #122A4A;
    --bg-surface: #0D2138;
    --bg-topbar: #06101F;
    --accent: #F0B429;
    --accent-hover: #F7C84D;
    --green: #4FA32E;
    --green-dark: #3C7E22;
    --text-white: #ffffff;
    --text-light: #D7E1EE;
    --text-muted: #8295A8;
    --edge: rgba(255,255,255,.08);
    --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Archivo', 'Segoe UI', system-ui, sans-serif;
    --topbar-h: 78px;
    --rds: 12px;
    --rds-s: 8px;
    --speed: .25s ease;
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font); background: var(--bg); color: var(--text-light);
    line-height: 1.6; font-size: 15px; font-weight: 500; overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
p, li, dd, dt, span, a { font-weight: inherit; }
strong, b { font-weight: 800; }
main {
    position: relative;
}
main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1400px;
    background: url('../../gallery/body-bg.webp') top center / 100% auto no-repeat;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 0;
}
main > * {
    position: relative;
    z-index: 1;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ====== LAYOUT (full-width, sidebar removed) ====== */
/* main is now a direct child of body — natural full-width.
   Inner sections (.jackpot-feed, .gtb-slot-section, .gtb-footer__top) already
   have their own max-width: 70% and margin: auto — no override needed. */
.layout { display: block; }
.sidebar { display: none; }

/* ====== SIDEBAR ====== */
.sidebar {
    background: var(--bg-topbar);
    border-right: 1px solid var(--edge);
    position: sticky;
    top: var(--topbar-h);
    height: calc(100vh - var(--topbar-h));
    overflow-y: auto;
    padding: 0;
    z-index: 10;
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }
.sidebar__promo {
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 12px; text-decoration: none;
    background: linear-gradient(135deg, rgba(245,166,35,.15), rgba(245,166,35,.05));
    border-bottom: 1px solid var(--edge);
    transition: background var(--speed);
}
.sidebar__promo:hover { background: linear-gradient(135deg, rgba(245,166,35,.25), rgba(245,166,35,.1)); }
.sidebar__promo-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 4px;
}
.sidebar__promo-value {
    font-size: 15px; font-weight: 700; color: var(--accent);
    text-align: center;
}
.sidebar__section {
    padding: 14px 10px;
    border-top: 1px solid var(--edge);
}
.sidebar__label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted);
    padding: 0 6px; margin-bottom: 10px; display: block;
}
.sidebar__game {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 6px; border-radius: var(--rds-s);
    text-decoration: none; color: var(--text-light);
    transition: background var(--speed);
}
.sidebar__game:hover { background: rgba(255,255,255,.05); }
.sidebar__game-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 6px; overflow: hidden; }
.sidebar__game-icon img { width: 100%; height: 100%; object-fit: cover; }
.sidebar__game-info { display: flex; flex-direction: column; min-width: 0; }
.sidebar__game-info strong { font-size: 13px; color: var(--text-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar__game-info small { font-size: 11px; color: var(--text-muted); }

/* ====== BUTTONS ====== */
.gtb-btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font); font-weight: 700; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    border-radius: 30px; letter-spacing: .5px; transition: all var(--speed);
}
.gtb-btn--cta {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff; padding: 14px 40px; font-size: 16px;
    box-shadow: 0 4px 20px rgba(76,217,100,.3);
    animation: ctaPulse 2s ease-in-out infinite;
}
.gtb-btn--cta:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(76,217,100,.45); animation: none; }
@keyframes ctaPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(76,217,100,.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 28px rgba(76,217,100,.5); }
}
.gtb-btn--primary { background: var(--green); color: #fff; }
.gtb-btn--outline {
    background: transparent; border: 2px solid var(--accent);
    color: var(--accent); padding: 8px 20px; font-size: 12px;
}
.gtb-btn--outline:hover { background: var(--accent); color: #000; }
.btn--ghost {
    background: transparent; border: 2px solid var(--text-muted);
    color: var(--text-white); padding: 8px 20px; font-size: 12px;
}
.btn--ghost:hover { border-color: var(--text-white); }
.gtb-btn--sm { padding: 8px 18px; font-size: 11px; }
.gtb-btn--lg { padding: 16px 50px; font-size: 16px; }

/* ====== TOPBAR ====== */
.gtb-topbar {
    display: flex; align-items: center;
    height: var(--topbar-h); background: var(--bg-topbar);
    border-bottom: 1px solid var(--edge);
    position: sticky; top: 0; z-index: 100;
    padding: 0 24px; gap: 16px;
}
.gtb-topbar__logo { flex-shrink: 0; text-decoration: none; }
.gtb-topbar__logo img { height: 64px; width: auto; }
.gtb-topbar__logo-img { height: 64px; width: auto; display: block; }
.gtb-topbar__logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: .5px;
    line-height: 1;
}
.gtb-topbar__nav {
    display: flex; align-items: center; gap: 4px;
    flex: 1; justify-content: center;
}
.gtb-topbar__nav-link {
    color: var(--text-muted); text-decoration: none;
    font-size: 13px; font-weight: 600;
    padding: 8px 16px; border-radius: 8px;
    transition: color var(--speed), background var(--speed);
    white-space: nowrap;
}
.gtb-topbar__nav-link:hover { color: var(--text-white); background: rgba(255,255,255,.06); }
.gtb-topbar__nav-link--active {
    color: #fff;
    background: rgba(245,166,35,.15);
    box-shadow: inset 0 -2px 0 var(--accent);
}
.gtb-topbar__nav-link--bonus {
    color: #000; background: linear-gradient(135deg, var(--accent), #f7c948);
    font-weight: 700;
}
.gtb-topbar__nav-link--bonus:hover { background: linear-gradient(135deg, var(--accent-hover), var(--accent)); color: #000; }

.gtb-topbar__nav-link--bonus.gtb-topbar__nav-link--active {
    color: #000;
    box-shadow:
        0 0 0 2px var(--bg-topbar),
        0 0 0 4px var(--accent),
        0 6px 16px rgba(245,166,35,.45);
}
.gtb-topbar__actions { display: flex; gap: 10px; flex-shrink: 0; }
.topbar__search {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.06); border: 1px solid var(--edge);
    border-radius: 30px; padding: 0 16px; max-width: 260px; flex-shrink: 1;
}
.topbar__search-icon { font-size: 14px; opacity: .5; }
.topbar__input {
    background: none; border: none; outline: none;
    color: var(--text-light); font-family: var(--font);
    font-size: 13px; width: 100%; padding: 8px 0;
}
.topbar__input::placeholder { color: var(--text-muted); }

/* ====== MOBILE HEADER ====== */
.gtb-mobile-header {
    display: none; position: fixed; top: 0; left: 0; right: 0;
    height: 76px; background: var(--bg-topbar); z-index: 101;
    align-items: center; justify-content: space-between; padding: 0 16px;
    border-bottom: 1px solid var(--edge);
}
.gtb-mobile-header__logo img { height: 64px; width: auto; }
.gtb-mobile-header__logo-img { height: 64px; width: auto; display: block; }
.gtb-burger {
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column; gap: 5px; padding: 8px;
}
.gtb-burger span { display: block; width: 22px; height: 2px; background: var(--text-white); border-radius: 2px; transition: var(--speed); }

/* Mobile sidebar overlay */
/* === VARIANT: full-screen === */
.gtb-mobile-nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,16,40,.97); z-index: 100;
    opacity: 0; visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    padding: 80px 32px 40px;
    overflow-y: auto;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px;
}
.gtb-mobile-nav--open { opacity: 1; visibility: visible; }
.gtb-mobile-nav__link {
    display: block; padding: 16px 24px; color: var(--text-light);
    text-decoration: none; font-size: 20px; font-weight: 700;
    border-radius: 12px; transition: background var(--speed);
    text-align: center; width: 100%; max-width: 320px;
    border: 1px solid var(--edge);
}
.gtb-mobile-nav__link:hover { background: rgba(255,255,255,.08); }
.gtb-mobile-nav__link--bonus {
    color: #fff; background: linear-gradient(135deg, var(--green), var(--green-dark));
    border: none; font-size: 22px;
}
.gtb-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 99; }
.gtb-overlay--visible { display: block; }

/* ====== HERO GRID (3-card layout) ====== */
.hero-grid {
    display: flex; flex-direction: column; gap: 12px;
    padding: 0 24px; margin-bottom: 28px;
}
.hero-grid__main {
    position: relative; border-radius: var(--rds); overflow: hidden;
    display: block; text-decoration: none; color: #fff;
    min-height: 380px;
}
.hero-grid__main img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
}
.hero-grid__overlay {
    position: relative; z-index: 2; padding: 40px 36px;
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 380px;
    background: linear-gradient(to top, rgba(10,16,40,.85) 0%, rgba(10,16,40,.4) 50%, rgba(10,16,40,.1) 100%);
}
.hero-grid__overlay h1 {
    font-family: var(--font-display); font-size: 36px; font-weight: 700;
    color: #fff; margin-bottom: 8px;
}
.hero-grid__offer {
    font-size: 22px; font-weight: 700; color: var(--accent); margin-bottom: 6px;
}
.hero-grid__sub {
    font-size: 14px; color: var(--text-light); margin-bottom: 20px; opacity: .85;
}
.hero-grid__main .gtb-btn { align-self: flex-start; }
.hero-grid__bottom {
    display: grid; grid-template-columns: 1fr 180px; gap: 12px;
}
.hero-grid__card {
    border-radius: var(--rds); overflow: hidden;
    display: block; position: relative;
    transition: all var(--speed);
}
.hero-grid__card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.4); }
.hero-grid__card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-grid__card--wide { height: 160px; }
.hero-grid__card--square { height: 160px; }
.hero-grid__card-text {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(10,16,40,.8) 0%, transparent 100%);
}
.hero-grid__card-label {
    display: block; font-size: 11px; color: var(--text-muted);
    font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
}
.hero-grid__card-title {
    display: block; font-size: 15px; font-weight: 700; color: #fff;
    font-family: var(--font-display);
}

@media (max-width: 1080px) {
    .hero-grid__main { min-height: 300px; }
    .hero-grid__overlay { min-height: 300px; padding: 30px 24px; }
    .hero-grid__overlay h1 { font-size: 28px; }
    .hero-grid__bottom { grid-template-columns: 1fr 140px; }
    .hero-grid__card--wide, .hero-grid__card--square { height: 130px; }
}
@media (max-width: 600px) {
    .hero-grid { padding: 0 16px; }
    .hero-grid__main { min-height: 260px; }
    .hero-grid__overlay { min-height: 260px; padding: 24px 20px; }
    .hero-grid__overlay h1 { font-size: 24px; }
    .hero-grid__offer { font-size: 18px; }
    .hero-grid__bottom { grid-template-columns: 1fr 120px; }
    .hero-grid__card--wide, .hero-grid__card--square { height: 110px; }
}

/* ====== HERO BANNER ====== */
.gtb-hero { margin-bottom: 28px; position: relative; }
.gtb-hero-overlay-link {
    position: absolute; inset: 0; z-index: 1;
    text-decoration: none;
    cursor: pointer;
}
.gtb-hero .gtb-banner { position: relative; z-index: 2; }
.gtb-hero .gtb-banner .gtb-btn--cta { position: relative; z-index: 3; }
.gtb-banner {
    position: relative; min-height: 560px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
    border-radius: 0 0 var(--rds) var(--rds);
}
.gtb-banner::after {
    content: ''; position: absolute; inset: 0;
    background: url('../../gallery/hero-bg.webp') center top/cover no-repeat;
    z-index: 0;
    filter: brightness(1.35) saturate(1.15);
    
}
@keyframes heroPulse {
    0%, 100% { transform: scale(1); filter: brightness(1.3) saturate(1.15); }
    50% { transform: scale(1.03); filter: brightness(1.5) saturate(1.3); }
}
.gtb-banner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(14,22,48,.15) 0%, rgba(14,22,48,.7) 100%);
    z-index: 1;
}
.gtb-banner__body {
    position: relative; z-index: 2;
    padding: 60px 24px; max-width: 700px;
}
.banner__tag {
    display: inline-block; background: rgba(245,166,35,.15);
    color: var(--accent); font-size: 13px; font-weight: 700;
    padding: 6px 18px; border-radius: 20px; margin-bottom: 16px;
    letter-spacing: .5px; text-transform: uppercase;
}
.banner__logo { width: 200px; margin: 0 auto 20px; }
.gtb-banner h1 {
    font-family: var(--font-display); font-size: 42px; font-weight: 700;
    color: #fff; margin-bottom: 10px;
    text-shadow: 0 3px 12px rgba(0,0,0,.6);
}
.gtb-banner__offer {
    font-size: 52px; font-weight: 900; color: var(--accent);
    line-height: 1.1; margin-bottom: 12px;
    text-shadow: 0 3px 12px rgba(0,0,0,.5);
}
.gtb-banner__offer strong { color: #fff; }
.gtb-banner__sub {
    font-size: 17px; color: #fff; margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* ====== BIG WINS TICKER ====== */
.jackpot-feed { margin-top: 8px; margin-bottom: 28px; padding: 0 24px; max-width: 70%; margin-left: auto; margin-right: auto; }
.jackpot-feed__head {
    display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.jackpot-feed__head svg { flex-shrink: 0; }
.jackpot-feed__head h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; line-height: 1; margin: 0; letter-spacing: .3px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.jackpot-feed__wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.jackpot-feed__track {
    display: flex; gap: 14px; width: max-content;
    animation: marquee-slide 35s linear infinite;
}
@keyframes marquee-slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.jackpot-feed__item {
    display: flex; align-items: center; gap: 12px;
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds-s); padding: 10px 16px;
    min-width: 240px; flex-shrink: 0;
}
.jackpot-feed__icon { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.jackpot-feed__info { display: flex; flex-direction: column; min-width: 0; }
.jackpot-feed__info strong { font-size: 13px; color: var(--text-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jackpot-feed__info small { font-size: 11px; color: var(--text-muted); }
.jackpot-feed__sum { font-weight: 800; color: var(--green); font-size: 15px; margin-left: auto; white-space: nowrap; }
.jackpot-feed__sum::before { content: '+'; margin-right: 1px; }

/* ====== GAME SECTIONS ====== */
.gtb-slot-section {
    margin-bottom: 32px; padding: 24px;
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds);
    max-width: 70%; margin-left: auto; margin-right: auto;
}

/* Swiper-style header */
.gtb-slider-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; gap: 12px;
}
.gtb-slider-title { display: flex; align-items: center; gap: 10px; min-width: 0; }
.gtb-slider-title h2 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: .3px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.section-header__icon { width: 24px; height: 24px; border-radius: 6px; }
.gtb-slider-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.gtb-slider-arrows { display: flex; gap: 6px; }
.gtb-slider-arrow {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--edge);
    color: var(--text-muted); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--speed); padding: 0;
}
.gtb-slider-arrow:hover { border-color: var(--accent); color: var(--text-white); }
.gtb-slider-arrow:disabled { opacity: .3; cursor: default; }
.gtb-slider-arrow:disabled:hover { border-color: var(--edge); color: var(--text-muted); }
.gtb-slider-arrow svg { width: 12px; height: 12px; fill: currentColor; }

/* Game carousel */
.gtb-slot-slider {
    display: flex; gap: 12px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding: 4px 0 8px;
}
.gtb-slot-slider::-webkit-scrollbar { display: none; }

/* Game cards */
.gtb-slot-tile {
    flex: 0 0 calc((100% - 60px) / 6);
    scroll-snap-align: start;
    text-decoration: none; color: var(--text-light);
    border-radius: var(--rds-s);
    position: relative;
    transition: transform var(--speed);
}
.gtb-slot-tile::after {
    content: ''; position: absolute; inset: 0;
    border-radius: var(--rds-s);
    border: 3px solid transparent;
    transition: border-color var(--speed), box-shadow var(--speed);
    pointer-events: none; z-index: 3;
}
.gtb-slot-tile:hover { transform: translateY(-4px); }
.gtb-slot-tile:hover::after {
    border-color: rgba(245,166,35,.9);
    box-shadow: 0 0 20px rgba(245,166,35,.4);
}
.gtb-slot-tile__thumb {
    aspect-ratio: 1/1;
    display: flex; align-items: center; justify-content: center;
    position: relative; border-radius: var(--rds-s) var(--rds-s) 0 0;
    overflow: hidden;
}
.gtb-slot-tile__thumb img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
}
.gtb-slot-tile__hover {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(245,166,35,.5) 0%, rgba(12,26,15,.25) 40%, rgba(12,26,15,.1) 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--speed);
}
.gtb-slot-tile__hover .gtb-play-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(76,217,100,.5);
    transition: transform .2s ease;
}
.gtb-slot-tile__hover .gtb-play-icon svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.gtb-slot-tile:hover .gtb-slot-tile__hover { opacity: 1; }
.gtb-slot-tile:hover .gtb-play-icon { transform: scale(1.1); }
.gtb-slot-tile__meta {
    background: var(--bg-card); padding: 10px 12px;
    display: flex; flex-direction: column;
    border: 1px solid var(--edge); border-top: none;
    border-radius: 0 0 var(--rds-s) var(--rds-s);
}
.gtb-slot-tile__meta strong { font-size: 13px; color: var(--text-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gtb-slot-tile__meta small { font-size: 11px; color: var(--text-muted); }

/* Live badge */
.slot-tile__live-tag {
    position: absolute; top: 8px; left: 8px;
    padding: 2px 8px; background: #e53935; color: #fff;
    font-size: 10px; font-weight: 700; border-radius: 4px;
    letter-spacing: .5px; z-index: 2;
}

/* Provider cards */
.gtb-vendor-tile {
    flex: 0 0 calc((100% - 60px) / 6);
    scroll-snap-align: start;
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds-s); padding: 16px 20px;
    display: flex; align-items: center; justify-content: center;
    min-height: 80px;
}
.gtb-vendor-tile img { max-height: 40px; width: auto; object-fit: contain; filter: brightness(.9); transition: filter var(--speed); }
.gtb-vendor-tile:hover img { filter: brightness(1.1); }

/* ====== CONTENT SECTIONS (Bonus, Registration, Withdrawal, FAQ) ====== */
.gtb-block {
    margin-bottom: 40px; padding: 0 24px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.gtb-block h2 {
    font-size: 22px; font-weight: 700; color: var(--text-white);
    margin-bottom: 16px;
}
.gtb-block p {
    color: var(--text-light); margin-bottom: 14px;
}
.gtb-block a { color: var(--accent); text-decoration: underline; }

/* Info grid (bonus steps, payment methods) */
.highlight-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px; margin: 20px 0;
}
.highlight {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 24px;
    text-align: center;
}
.highlight__icon { font-size: 36px; margin-bottom: 12px; }
.highlight h3 { font-size: 16px; color: var(--text-white); margin-bottom: 8px; }
.highlight p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ====== FEATURES ====== */
.features {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    padding: 0 24px; margin-bottom: 40px; max-width: 70%; margin-left: auto; margin-right: auto;
}
.perk-box {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 28px 20px;
    text-align: center;
}
.perk-box__icon { font-size: 32px; margin-bottom: 14px; }
.perk-box h3 { font-size: 15px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.perk-box p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ====== FAQ ====== */
.qa-list { max-width: 1100px; margin-left: auto; margin-right: auto; }
.gtb-faq-item {
    border: 1px solid var(--edge); border-radius: var(--rds-s);
    margin-bottom: 10px; overflow: hidden;
    background: var(--bg-card);
    transition: border-color .25s ease;
}
.gtb-faq-item[open] { border-color: var(--accent); }
.gtb-faq-item__q {
    width: 100%; background: var(--bg-card); border: none;
    color: var(--text-white); font-family: var(--font);
    font-size: 15px; font-weight: 700; text-align: left;
    padding: 18px 22px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    list-style: none;
}
.gtb-faq-item__q::-webkit-details-marker { display: none; }
.gtb-faq-item__q::after {
    content: '+'; font-size: 24px; line-height: 1; color: var(--accent);
    font-weight: 300; transition: transform .25s ease;
    flex-shrink: 0;
}
.gtb-faq-item[open] .gtb-faq-item__q::after { transform: rotate(45deg); }
.gtb-faq-item__a {
    padding: 0 22px 18px;
    font-size: 14px; color: var(--text-light); line-height: 1.7;
    font-weight: 500;
}
.gtb-faq-item__a p { margin: 0; }

/* ====== CTA BLOCK ====== */
.cta-section {
    text-align: center; padding: 48px 24px;
    background: linear-gradient(135deg, rgba(245,166,35,.08), rgba(76,217,100,.05));
    border-radius: var(--rds); margin: 0 auto 40px;
    border: 1px solid var(--edge); max-width: 900px;
}
.cta-section h2 { font-size: 26px; color: var(--text-white); margin-bottom: 12px; }
.cta-section p { color: var(--text-muted); margin-bottom: 24px; }

/* ====== FOOTER ====== */
.gtb-footer {
    background: var(--bg-topbar); border-top: 1px solid var(--edge);
    padding: 40px 24px 20px; font-family: var(--font);
}
.gtb-footer__top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 40px; margin-bottom: 28px; max-width: 100%; margin-left: 0; margin-right: 0;
}
.gtb-footer__brand { max-width: 400px; flex-shrink: 0; }
.footer__logo-img { height: 50px; width: auto; margin-bottom: 16px; }
.gtb-footer__logo-img { height: 46px; width: auto; display: block; margin-bottom: 16px; }
.gtb-footer__logo-text { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--accent); display: block; margin-bottom: 16px; }
.gtb-footer__desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.gtb-footer__links {
    display: flex; gap: 48px; flex: 1; justify-content: flex-end;
}
.gtb-footer__nav ul { list-style: none; padding: 0; margin: 0; }
.gtb-footer__heading {
    font-size: 13px; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 12px;
}
.gtb-footer__nav li a {
    display: block; font-size: 13px; color: var(--text-muted);
    text-decoration: none; padding: 3px 0; transition: color var(--speed);
}
.gtb-footer__nav li a:hover { color: var(--text-white); }
.footer__providers {
    display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 20px 0;
    border-top: 1px solid var(--edge); max-width: 100%; margin: 0;
}
.footer__providers span {
    font-size: 11px; font-weight: 600; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: .5px;
}
.gtb-footer__pays {
    display: flex; flex-wrap: wrap; gap: 10px; padding: 20px 0; justify-content: flex-start;
    border-top: 1px solid var(--edge); max-width: 100%; margin: 0;
}
.gtb-pay-badge {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 6px 12px; background: var(--bg-card);
    border: 1px solid var(--edge); border-radius: 6px;
}
.gtb-footer__bottom {
    border-top: 1px solid var(--edge); padding-top: 20px;
    max-width: 100%; margin: 0;
}
.footer__badges { display: flex; gap: 12px; align-items: center; justify-content: flex-start; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--edge); max-width: 100%; margin-left: 0; margin-right: 0; }
@media (max-width: 768px) { .gtb-footer__logo-img { display: none; } }
.footer__age {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid #e53935; color: #e53935; font-size: 12px; font-weight: 700;
}
.footer__badge {
    font-size: 11px; color: var(--text-muted); background: var(--bg-card);
    padding: 4px 10px; border-radius: 4px; border: 1px solid var(--edge);
}
.gtb-footer__disclaimer {
    font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px;
}
.gtb-footer__disclaimer a { color: var(--accent); text-decoration: underline; }
.gtb-footer__copy { font-size: 11px; color: var(--text-muted); opacity: .5; }

/* ====== PROMO BANNER ====== */
.gtb-cta-strip-wrap {
    padding: 0 24px; margin-bottom: 32px; max-width: 1100px; margin-left: auto; margin-right: auto;
}
.gtb-cta-strip {
    display: flex; align-items: flex-end; justify-content: flex-start;
    background:
        linear-gradient(to right, rgba(18,11,7,.95) 0%, rgba(18,11,7,.74) 32%, rgba(18,11,7,.30) 56%, rgba(18,11,7,0) 78%),
        url('../../gallery/promo-2.webp') right top / cover no-repeat,
        linear-gradient(135deg, #1e140c, #120b07);
    border: 3px solid var(--accent); border-radius: var(--rds);
    overflow: hidden; text-decoration: none; color: #fff;
    min-height: 360px; position: relative;
    transition: all var(--speed);
}
.gtb-cta-strip:hover {
    border-color: #4caf50; box-shadow: 0 4px 30px rgba(63,166,74,.3);
    transform: translateY(-2px);
}
.gtb-cta-strip__text {
    padding: 36px 40px 24px 56px; flex: 1; position: relative; z-index: 2;
    text-align: left; max-width: 560px;
}
.gtb-cta-strip__label {
    font-size: 22px; color: #c8d4e8; margin-bottom: 8px; font-weight: 700;
    font-style: italic;
}
.gtb-cta-strip__title {
    font-size: 52px; font-weight: 900; color: #ffd740; line-height: 1.05;
    margin-bottom: 12px; text-transform: uppercase; font-style: italic;
    text-shadow: 0 3px 10px rgba(0,0,0,.6);
}
.gtb-cta-strip__sub {
    font-size: 19px; color: #fff; margin-bottom: 24px; font-weight: 600;
    font-style: italic; opacity: .9;
}
.gtb-cta-strip__btn {
    display: inline-block; padding: 10px 28px;
    background: linear-gradient(135deg, #4caf50, #2e8b3d);
    color: #fff; font-weight: 700; font-size: 15px;
    border-radius: 30px; text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(63,166,74,.4);
    transition: background .25s ease, box-shadow .25s ease;
    animation: ctaPulseGreen 2s ease-in-out infinite;
}
.gtb-cta-strip:hover .gtb-cta-strip__btn {
    background: linear-gradient(135deg, #5fc465, #4caf50);
    box-shadow: 0 6px 28px rgba(63,166,74,.6);
    animation: none;
}
@keyframes ctaPulseGreen {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(63,166,74,.4); }
    50%      { transform: scale(1.06); box-shadow: 0 8px 32px rgba(63,166,74,.65); }
}
.gtb-cta-strip__art { display: none; }

@media (max-width: 968px) {
    .gtb-cta-strip {
        flex-direction: column; text-align: center; justify-content: flex-end;
        min-height: 340px;
        background:
            linear-gradient(to bottom, rgba(18,11,7,.10) 0%, rgba(18,11,7,.40) 42%, rgba(18,11,7,.92) 100%),
            url('../../gallery/promo-2.webp') right center / cover no-repeat,
            linear-gradient(135deg, #1e140c, #120b07);
    }
    .gtb-cta-strip__text { padding: 24px 20px 20px; flex: 0 0 auto; text-align: center; max-width: 100%; }
    .gtb-cta-strip__title { font-size: 28px; }
    .gtb-cta-strip-wrap { padding: 0 16px; }
}

@media (max-width: 968px) {
    .jackpot-feed,
    .gtb-slot-section,
    .gtb-cta-strip-wrap {
        max-width: 100%;
    }
}

/* ====== BONUS TIERS (Explore block) ====== */
.gtb-bonus-tiers {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 10px; margin: 20px 0;
}
.gtb-bonus-tier {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds-s); padding: 18px 10px;
    text-align: center; display: flex; flex-direction: column;
    align-items: center; gap: 6px; transition: all var(--speed);
    box-shadow: 0 2px 8px rgba(0,0,0,.3); text-decoration: none; cursor: pointer;
}
.gtb-bonus-tier:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,.4); }
.gtb-bonus-tier__num { color: var(--accent); }
.gtb-bonus-tier__num svg { width: 28px; height: 28px; }
.bonus-tier__pct { font-size: 18px; font-weight: 700; color: var(--text-white); line-height: 1.2; text-transform: uppercase; }
.bonus-tier__max { font-size: 12px; color: var(--text-muted); }

/* ====== BREADCRUMBS ====== */
.gtb-breadcrumbs {
    padding: 16px 24px 0; font-size: 13px; color: var(--text-muted);
    max-width: 900px; margin-left: auto; margin-right: auto;
}
.gtb-breadcrumbs a { color: var(--accent); text-decoration: none; }
.gtb-breadcrumbs a:hover { text-decoration: underline; }
.gtb-breadcrumbs span { margin: 0 6px; opacity: .5; }

/* ====== BONUS GRID ====== */
.bonus-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px; margin: 24px 0;
}
.bonus-card {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 24px; text-align: center;
}
.bonus-card__icon { font-size: 32px; margin-bottom: 10px; }
.bonus-card h3 { font-size: 15px; color: var(--text-white); margin-bottom: 6px; }
.bonus-card p { font-size: 13px; color: var(--text-muted); margin: 0; }
.bonus-card--highlight { border-color: var(--accent); background: rgba(245,166,35,.05); }

/* ====== RATING BOX ====== */
.gtb-rating-box {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 28px; text-align: center;
    margin: 24px 0; max-width: 400px;
}
.gtb-rating-box__score {
    font-size: 48px; font-weight: 800; color: var(--accent);
    line-height: 1;
}
.gtb-rating-box__stars { color: var(--accent); font-size: 22px; margin: 8px 0; letter-spacing: 2px; }
.gtb-rating-box__text { font-size: 13px; color: var(--text-muted); }

/* ====== PROS / CONS ====== */
.gtb-pros-cons {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin: 24px 0; max-width: 800px;
}
.pros-box, .cons-box {
    background: var(--bg-card); border-radius: var(--rds);
    padding: 20px; border: 1px solid var(--edge);
}
.pros-box h3 { color: var(--green); margin-bottom: 12px; font-size: 15px; }
.cons-box h3 { color: #e53935; margin-bottom: 12px; font-size: 15px; }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; }
.pros-box li, .cons-box li {
    font-size: 13px; color: var(--text-light); padding: 6px 0;
    padding-left: 20px; position: relative;
}
.pros-box li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons-box li::before { content: '✗'; position: absolute; left: 0; color: #e53935; font-weight: 700; }

/* ====== REVIEW CARDS ====== */
.gtb-review-card {
    background: var(--bg-card); border: 1px solid var(--edge);
    border-radius: var(--rds); padding: 20px; margin-bottom: 16px;
    max-width: 800px;
}
.review-card__header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.gtb-review-card__avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(245,166,35,.15); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.gtb-review-card__name { font-size: 14px; font-weight: 600; color: var(--text-white); }
.gtb-review-card__date { font-size: 11px; color: var(--text-muted); }
.gtb-review-card__stars { color: var(--accent); font-size: 14px; margin-bottom: 8px; letter-spacing: 1px; }
.review-card__text { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ====== INFO TABLE ====== */
.info-table {
    width: 100%; border-collapse: collapse; margin: 20px 0;
    max-width: 800px;
}
.info-table th, .info-table td {
    padding: 12px 16px; text-align: left; font-size: 13px;
    border-bottom: 1px solid var(--edge);
}
.info-table th {
    background: var(--bg-card); color: var(--accent);
    font-weight: 700; font-size: 12px; text-transform: uppercase;
    letter-spacing: .5px;
}
.info-table td { color: var(--text-light); }
.info-table tr:hover td { background: rgba(255,255,255,.02); }

/* ====== SEO BLOCK ====== */
.gtb-article {
    max-width: 1200px; margin-left: auto; margin-right: auto;
    font-family: var(--font);
}
.gtb-article h2 {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 800; color: #fff;
    text-align: left; letter-spacing: .2px;
    margin: 36px 0 22px;
    padding-left: 18px;
    border-left: 5px solid var(--accent);
    line-height: 1.15;
    text-shadow: none;
}
.gtb-article h3 {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 800; color: #fff;
    text-align: left; letter-spacing: .2px;
    margin: 32px 0 18px;
    padding-left: 14px;
    border-left: 4px solid var(--accent);
    line-height: 1.2;
    text-shadow: none;
}
.gtb-article p { text-align: left; }
.gtb-article p {
    font-size: 15px; line-height: 1.75; color: #dfe6f3;
    font-weight: 500;
    margin-bottom: 14px;
}
.gtb-article a { color: var(--accent); text-decoration: underline; }
.gtb-article hr {
    border: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    margin: 36px auto;
    max-width: 1080px;
}

@media (max-width: 600px) {
    .gtb-article h2 { font-size: 24px; margin: 28px 0 18px; }
    .gtb-article h3 { font-size: 19px; margin: 24px 0 14px; }
    .gtb-article hr { margin: 28px auto; }
}

.article-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin: -10px 0 30px;
    font-style: italic;
}

.gtb-intro-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 36px;
}
.gtb-intro-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.gtb-intro-text p { text-align: left; }

.gtb-info-card {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(245,166,35,.08), transparent 60%),
        linear-gradient(180deg, #161f3d, #1a1410);
    border: 1px solid rgba(245,166,35,.18);
    border-radius: 16px;
    padding: 36px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow:
        0 10px 40px rgba(0,0,0,.4),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.gtb-info-card__badge {
    position: absolute;
    top: 14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #d18014);
    color: #1a1410;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(245,166,35,.4);
}

.gtb-info-card__head {
    display: flex; flex-direction: column; align-items: center;
    gap: 4px;
    padding: 8px 0 4px;
}
.gtb-info-card__brand {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: .5px;
    line-height: 1;
}
.gtb-info-card__tag {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.gtb-info-card__score {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    background: rgba(255,255,255,.03);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}
.gtb-info-card__score-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    flex-shrink: 0;
}
.gtb-info-card__score-meta { display: flex; flex-direction: column; gap: 4px; }
.gtb-info-card__score-meta .gtb-stars {
    color: #ffd740; letter-spacing: 1.5px; font-size: 14px;
}
.gtb-info-card__score-label {
    font-size: 11px; color: var(--text-muted); font-weight: 500;
}

.gtb-info-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
}
.gtb-info-stat {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 8px;
    background: rgba(255,255,255,.025);
    border-radius: 8px;
}
.gtb-info-stat__icon {
    width: 22px; height: 22px;
    color: var(--accent);
    flex-shrink: 0;
}
.gtb-info-stat__label {
    font-size: 10.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    margin-bottom: 1px;
}
.gtb-info-stat__value {
    font-family: var(--font-display);
    font-size: 14px;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
}

.gtb-info-card__highlights {
    padding: 14px 14px 12px;
    background: rgba(76,217,100,.05);
    border-radius: 10px;
    border-left: 3px solid var(--green);
}
.gtb-info-card__highlights-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.gtb-info-card__highlights ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.gtb-info-card__highlights li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.4;
    font-weight: 500;
}
.gtb-info-card__highlights li::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.gtb-info-card__payments {
    padding: 12px 14px;
    background: rgba(255,255,255,.025);
    border-radius: 10px;
}
.gtb-info-card__payments-title {
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.gtb-info-card__payments-icons {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.gtb-info-card__payments-icons span {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px;
    color: var(--text-light);
    letter-spacing: .5px;
}

.gtb-info-card__breakdown {
    padding: 14px 14px 12px;
    background: rgba(255,255,255,.025);
    border-radius: 10px;
}
.gtb-info-card__breakdown-title {
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.gtb-rating-bar {
    display: grid;
    grid-template-columns: 70px 1fr 30px;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.gtb-rating-bar:last-child { margin-bottom: 0; }
.gtb-rating-bar__label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
}
.gtb-rating-bar__track {
    height: 6px;
    background: rgba(255,255,255,.06);
    border-radius: 3px;
    overflow: hidden;
}
.gtb-rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #d18014);
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(245,166,35,.4);
}
.gtb-rating-bar__value {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    color: var(--text-white);
    text-align: right;
}

@media (max-width: 600px) {
    .gtb-info-card__breakdown { display: none; }
}

.gtb-info-card__cta {
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #e6951a 50%, var(--accent) 100%);
    background-size: 200% 100%;
    color: #fff !important;
    text-decoration: none !important;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    box-shadow:
        0 8px 28px rgba(245,166,35,.45),
        inset 0 -2px 0 rgba(0,0,0,.15);
    transition: all .3s ease;
}
.gtb-info-card__cta svg {
    width: 18px; height: 18px;
    transition: transform .3s ease;
}
.gtb-info-card__cta:hover {
    background-position: 100% 0;
    box-shadow: 0 12px 36px rgba(245,166,35,.6), inset 0 -2px 0 rgba(0,0,0,.15);
}
.gtb-info-card__cta:hover svg { transform: translateX(4px); }

.gtb-info-card__foot {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: .3px;
}

.gtb-quick-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: auto 0 0;
}
.gtb-quick-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px;
    padding: 22px 14px;
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 14px;
    text-decoration: none !important;
    text-align: center;
    transition: all .25s ease;
}
.gtb-quick-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(245,166,35,.15);
}
.gtb-quick-card__icon {
    width: 30px; height: 30px; color: var(--accent);
    margin-bottom: 2px;
}
.gtb-quick-card__title {
    color: var(--accent);
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gtb-quick-card__desc {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 968px) {
    .gtb-intro-layout {
        grid-template-columns: 1fr;
    }
    .gtb-info-card { max-width: 480px; margin: 0 auto; width: 100%; }
    .gtb-quick-cards { grid-template-columns: repeat(3, 1fr); }
}

.gtb-mobile-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 24px;
}
.gtb-mobile-section__text h2 {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 800; color: #fff;
    text-align: left;
    margin: 0 0 18px;
    padding-left: 16px;
    border-left: 4px solid var(--accent);
    line-height: 1.15;
    text-shadow: none;
}
.gtb-mobile-section__text p {
    font-size: 15px; line-height: 1.75; color: #dfe6f3;
    font-weight: 500;
    margin-bottom: 24px;
}
.gtb-check-list {
    list-style: none; margin: 0 0 28px; padding: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.gtb-check-list li {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-light); font-size: 14px; font-weight: 500;
}
.gtb-check-list li::before {
    content: '✓';
    width: 22px; height: 22px;
    background: rgba(245,166,35,.12);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-weight: 800; font-size: 13px;
    flex-shrink: 0;
}
.gtb-platform-badges {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.gtb-platform-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 10px;
    color: var(--text-white);
    font-weight: 700; font-size: 14px;
    text-decoration: none !important;
    transition: all .2s ease;
}
.gtb-platform-badge:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.gtb-platform-badge svg { width: 18px; height: 18px; }
.gtb-platform-badge--ios svg { fill: #fff; }
.gtb-platform-badge--android svg { fill: #3ddc84; }

/* ====== PHONE MOCKUP ====== */
.gtb-phone-mockup {
    width: 340px; height: 680px;
    background: #060607;
    border-radius: 38px;
    padding: 3px;
    border: none;
    box-shadow:
        0 40px 80px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,255,255,.05),
        inset 0 1px 0 rgba(255,255,255,.08);
    position: relative;
    margin: 0 auto;
}
.gtb-phone-mockup::before {
    content: '';
    width: 110px; height: 22px;
    background: #000;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.gtb-phone-screen {
    background: #060607;
    border-radius: 35px;
    width: 100%; height: 100%;
    overflow: hidden;
    position: relative;
}
.gtb-phone-screen__app {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.gtb-phone-screen__logo {
    height: 50px; display: flex; align-items: center; justify-content: center;
    background: #120d0a;
    padding: 12px 0 8px;
    flex-shrink: 0;
}
.gtb-phone-screen__logo img {
    height: 22px; width: auto;
}
.gtb-phone-screen__hero {
    flex: 1;
    background: url('../../gallery/sweet-bonanza.webp') center/cover no-repeat;
    position: relative;
}
.gtb-phone-screen__cta {
    position: absolute; bottom: 10px; left: 10px; right: 10px;
    display: flex; gap: 8px;
}
.gtb-phone-screen__cta button {
    flex: 1; padding: 8px 6px;
    border: none; border-radius: 6px;
    font-family: var(--font-display); font-weight: 800;
    font-size: 10px; text-transform: uppercase;
    cursor: pointer;
}
.gtb-phone-screen__cta button:first-child {
    background: var(--accent); color: #000;
}
.gtb-phone-screen__cta button:last-child {
    background: #ff3a3a; color: #fff;
}
.gtb-phone-screen__tiles {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
    padding: 8px;
    background: #120d0a;
    flex-shrink: 0;
}
.gtb-phone-screen__tile {
    aspect-ratio: 1;
    background-size: cover; background-position: center;
    border-radius: 4px;
    position: relative;
}
.gtb-phone-screen__tile span {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,.75);
    color: #fff; font-size: 6px;
    text-align: center; padding: 1px 2px;
    border-radius: 0 0 4px 4px;
    line-height: 1.2;
}
.gtb-phone-screen__nav {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(180deg, var(--accent), #d18014);
    padding: 6px 0;
    flex-shrink: 0;
}
.gtb-phone-screen__nav span {
    text-align: center; font-size: 8px;
    color: #fff; font-weight: 700;
}

@media (max-width: 968px) {
    .gtb-mobile-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .gtb-phone-mockup { width: 300px; height: 600px; }
    .gtb-mobile-section__text h2 { font-size: 26px; }
}

.gtb-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0 8px;
}
.gtb-review-card {
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 22px;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gtb-review-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.gtb-review-card__head {
    display: flex; align-items: center; gap: 12px;
}
.gtb-review-card__avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #d18014);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 17px;
    font-family: var(--font-display);
    flex-shrink: 0;
}
.gtb-review-card__name {
    font-weight: 700; font-size: 14px; color: var(--text-white);
}
.gtb-review-card__date {
    font-size: 12px; color: var(--text-muted); margin-top: 2px;
}
.gtb-review-card__stars {
    color: #ffd740; letter-spacing: 2px; font-size: 15px;
}
.gtb-review-card__quote {
    color: var(--text-light); font-size: 14px; line-height: 1.6;
    font-style: italic;
    margin: 0; text-align: left;
    position: relative;
    padding-left: 14px;
    border-left: 3px solid rgba(245,166,35,.3);
}

@media (max-width: 968px) {
    .gtb-reviews-grid { grid-template-columns: 1fr; }
}

.gtb-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin: 28px 0 8px;
    padding: 20px 0;
}
.gtb-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    position: relative;
}
.gtb-step__circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #d18014);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 22px;
    box-shadow: 0 8px 24px rgba(245,166,35,.35);
    margin-bottom: 14px;
    position: relative; z-index: 2;
}
.gtb-step__circle svg {
    width: 28px; height: 28px;
    stroke: #fff; stroke-width: 2.2; fill: none;
}
.gtb-step__title {
    font-family: var(--font-display);
    font-size: 14px; font-weight: 800; color: var(--accent);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 6px;
}
.gtb-step__desc {
    font-size: 13px; color: var(--text-light); line-height: 1.45;
    font-weight: 500;
}
.gtb-step__line {
    flex: 0 0 auto;
    align-self: flex-start;
    width: 30px; height: 30px;
    margin-top: 18px;
    background: none;
    position: relative;
}
.gtb-step__line::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    width: 13px; height: 13px;
    border-top: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
    border-radius: 2px;
    transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 768px) {
    .gtb-stepper {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .gtb-step { max-width: 320px; margin-bottom: 16px; }
    .gtb-step__line {
        align-self: center;
        width: 30px; height: 26px;
        margin-top: 4px; margin-bottom: 4px;
        flex: none;
    }
    .gtb-step__line::before {
        display: block;
        transform: translate(-50%, -60%) rotate(135deg);
    }
}

.gtb-speed-bars {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 28px 0 12px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 14px;
}
.gtb-speed-bar { display: flex; flex-direction: column; gap: 8px; }
.gtb-speed-bar__head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.gtb-speed-bar__method {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-white);
    font-weight: 700; font-size: 14px;
}
.gtb-speed-bar__method svg {
    width: 22px; height: 22px;
    fill: var(--accent);
}
.gtb-speed-bar__time {
    font-family: var(--font-display);
    font-weight: 800; font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
}
.gtb-speed-bar__time--fast {
    background: rgba(76,217,100,.15);
    color: #4cd964;
}
.gtb-speed-bar__time--medium {
    background: rgba(245,166,35,.15);
    color: var(--accent);
}
.gtb-speed-bar__time--slow {
    background: rgba(255,107,107,.12);
    color: #ff8c8c;
}
.gtb-speed-bar__track {
    height: 10px;
    background: rgba(255,255,255,.06);
    border-radius: 20px;
    overflow: hidden;
}
.gtb-speed-bar__fill {
    height: 100%;
    border-radius: 20px;
    transition: width .6s ease;
    position: relative;
}
.gtb-speed-bar__fill--fast {
    background: linear-gradient(90deg, #4cd964, #2ea44f);
    box-shadow: 0 0 12px rgba(76,217,100,.4);
}
.gtb-speed-bar__fill--medium {
    background: linear-gradient(90deg, var(--accent), #d18014);
    box-shadow: 0 0 12px rgba(245,166,35,.35);
}
.gtb-speed-bar__fill--slow {
    background: linear-gradient(90deg, #ff8c8c, #d65555);
    box-shadow: 0 0 12px rgba(255,107,107,.3);
}
.gtb-speed-bars__legend {
    display: flex; gap: 18px; justify-content: center;
    margin-top: 6px; padding-top: 16px;
    border-top: 1px solid var(--edge);
    font-size: 12px; color: var(--text-muted);
    flex-wrap: wrap;
}
.gtb-speed-bars__legend span {
    display: inline-flex; align-items: center; gap: 6px;
}
.gtb-speed-bars__legend span::before {
    content: ''; width: 10px; height: 10px; border-radius: 50%;
    display: inline-block;
}
.gtb-speed-bars__legend .gtb-leg-fast::before { background: #4cd964; }
.gtb-speed-bars__legend .gtb-leg-medium::before { background: var(--accent); }
.gtb-speed-bars__legend .gtb-leg-slow::before { background: #ff8c8c; }

@media (max-width: 600px) {
    .gtb-speed-bars { padding: 18px; }
    .gtb-speed-bar__head { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ====== TRUST BADGES (Security) ====== */
.gtb-trust-badges {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 28px 0 12px;
}
.gtb-trust-badge {
    background: var(--bg-card);
    border: 1px solid var(--edge);
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.gtb-trust-badge:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.gtb-trust-badge__icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245,166,35,.2), rgba(245,166,35,.05));
    border: 1.5px solid rgba(245,166,35,.3);
    display: flex; align-items: center; justify-content: center;
}
.gtb-trust-badge__icon svg {
    width: 30px; height: 30px;
    stroke: var(--accent); stroke-width: 2; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
}
.gtb-trust-badge__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.gtb-trust-badge__desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .gtb-trust-badges { grid-template-columns: repeat(3, 1fr); }
}

.gtb-cta-block {
    position: relative;
    margin: 48px 0 32px;
    padding: 44px 32px 28px;
    text-align: center;
    background:
        radial-gradient(ellipse at top, rgba(76,217,100,.10), transparent 65%),
        linear-gradient(180deg, #1a2547, #1a1410);
    border: 1px solid rgba(76,217,100,.25);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 18px 50px rgba(0,0,0,.5),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.gtb-cta-block::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green), var(--accent), var(--green), transparent);
}

.gtb-cta-block h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-align: center !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    border-left: none !important;
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
    line-height: 1.15;
}
.gtb-cta-block p {
    font-size: 16px;
    color: var(--text-light);
    text-align: center !important;
    margin: 0 auto 28px;
    max-width: 540px;
    font-weight: 500;
}
.gtb-cta-block p strong { color: #fff; font-weight: 800; }
.gtb-cta-block .gtb-btn--cta {
    margin: 0 auto;
    color: #fff !important;
    text-decoration: none !important;
}

.gtb-cta-block .gtb-info-card__foot {
    margin-top: 28px !important;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: .3px;
}

@media (max-width: 600px) {
    .gtb-cta-block { padding: 32px 20px 22px; }
    .gtb-cta-block h2 { font-size: 24px; }
    .gtb-cta-block p { font-size: 14px; }
}

/* ====== COOKIE CONSENT BANNER (GDPR) ====== */
.gtb-cookie-banner {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 560px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1a2547, #1a1410);
    border: 1px solid rgba(245,166,35,.3);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    z-index: 9999;
    transform: translateY(120%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.gtb-cookie-banner.gtb-is-visible { transform: translateY(0); }
.gtb-cookie-banner__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    display: flex; align-items: center; gap: 8px;
}
.gtb-cookie-banner__title::before { content: '🍪'; font-size: 18px; }
.gtb-cookie-banner__text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0 0 16px;
    font-weight: 500;
}
.gtb-cookie-banner__text a {
    color: var(--accent);
    text-decoration: underline;
}
.gtb-cookie-banner__actions {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.gtb-cookie-banner__btn {
    flex: 1; min-width: 130px;
    padding: 10px 16px;
    font-family: var(--font-display);
    font-weight: 800; font-size: 12px;
    text-transform: uppercase; letter-spacing: .8px;
    border: none; border-radius: 8px;
    cursor: pointer;
    transition: all .2s ease;
}
.gtb-cookie-banner__btn--accept {
    background: linear-gradient(135deg, var(--accent), #d18014);
    color: #fff;
    box-shadow: 0 4px 16px rgba(245,166,35,.4);
}
.gtb-cookie-banner__btn--accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245,166,35,.55);
}
.gtb-cookie-banner__btn--reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,.18);
}
.gtb-cookie-banner__btn--reject:hover {
    background: rgba(255,255,255,.05);
    color: #fff;
}
@media (max-width: 600px) {
    .gtb-cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px 18px 16px; }
    .gtb-cookie-banner__btn { flex: 1 1 100%; min-width: 0; }
}

.gtb-super-bonus-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1040, #2d1b69);
    border: 2px solid #00e5a0;
    border-radius: 50px;
    padding: 14px 28px 14px 18px;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0, 229, 160, 0.3), 0 0 12px rgba(0, 229, 160, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: superBonusPulse 2s ease-in-out infinite;
}
.gtb-super-bonus-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 32px rgba(0, 229, 160, 0.45), 0 0 20px rgba(0, 229, 160, 0.25);
}
.gtb-super-bonus-btn__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e67e22, #f1c40f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}
.gtb-super-bonus-btn__text {
    font-family: var(--font);
    font-weight: 700;
    font-size: 20px;
    font-style: italic;
    color: #00e5a0;
    text-shadow: 0 0 8px rgba(0, 229, 160, 0.4);
}
@keyframes superBonusPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 24px rgba(0, 229, 160, 0.3), 0 0 12px rgba(0, 229, 160, 0.15); }
    50% { transform: scale(1.08); box-shadow: 0 4px 40px rgba(0, 229, 160, 0.7), 0 0 30px rgba(0, 229, 160, 0.5); }
}

/* Super Bonus Popup */
.gtb-super-bonus-popup {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 998;
    width: 340px;
    background: linear-gradient(180deg, #1a1040 0%, #130c30 100%);
    border: 2px solid #2d1b69;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.gtb-super-bonus-popup.gtb-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.gtb-super-bonus-popup__close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}
.gtb-super-bonus-popup__close:hover { color: var(--text-white); }

.gtb-super-bonus-popup__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.4;
}
.gtb-super-bonus-popup__title span { color: #f1c40f; }

.gtb-super-bonus-popup__tiers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.gtb-super-bonus-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
}
.gtb-super-bonus-tier__count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-white);
}
.gtb-super-bonus-tier__count strong { font-size: 18px; color: var(--text-white); }
.gtb-super-bonus-tier__count span { color: #f1c40f; font-weight: 600; font-size: 13px; }
.gtb-super-bonus-tier__reward { font-size: 15px; font-weight: 700; color: var(--text-white); }

.gtb-super-bonus-popup__today {
    text-align: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: #f1c40f;
}
.gtb-super-bonus-popup__today::before,
.gtb-super-bonus-popup__today::after { content: '✦ '; }
.gtb-super-bonus-popup__fs {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}
.gtb-super-bonus-popup__cta {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #e74c3c, #e67e22);
    border: none;
    border-radius: 30px;
    color: var(--text-white) !important;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.gtb-super-bonus-popup__cta:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
}
.gtb-super-bonus-popup__tc {
    display: block;
    text-align: right;
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .gtb-super-bonus-btn { bottom: 16px; right: 16px; padding: 8px 16px 8px 10px; }
    .gtb-super-bonus-btn__icon { width: 30px; height: 30px; font-size: 16px; }
    .gtb-super-bonus-btn__text { font-size: 14px; }
    .gtb-super-bonus-popup { right: 10px; left: 10px; width: auto; bottom: 80px; }
}

.lucky-wheel-section {
    margin: 40px 0;
    padding: 36px 28px;
    background:
        radial-gradient(ellipse at top, rgba(245,166,35,.12), transparent 60%),
        linear-gradient(180deg, #1a2547, #1a1410);
    border: 1px solid rgba(245,166,35,.25);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,.5);
}
.lucky-wheel-section__inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: center;
}
.lucky-wheel-section__text h2 {
    font-family: var(--font-display);
    font-size: 30px; font-weight: 800; color: #fff;
    text-align: left;
    padding-left: 18px;
    border-left: 5px solid var(--accent);
    line-height: 1.15;
    margin: 0 0 16px;
}
.lucky-wheel-section__text p {
    font-size: 15px; color: var(--text-light); line-height: 1.6;
    margin: 0 0 14px; font-weight: 500;
}
.lucky-wheel-section__list {
    list-style: none; padding: 0; margin: 18px 0 0;
    display: flex; flex-direction: column; gap: 10px;
}
.lucky-wheel-section__list li {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-light); font-size: 14px; font-weight: 500;
}
.lucky-wheel-section__list li::before {
    content: '★'; color: var(--accent); font-size: 16px;
}

.spin-wheel {
    position: relative; width: 100%; aspect-ratio: 1; max-width: 380px;
    margin: 0 auto;
    animation: wheelPulse 2.5s ease-in-out infinite;
}
@keyframes wheelPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(245,166,35,0.2)); }
    50% { transform: scale(1.03); filter: drop-shadow(0 0 20px rgba(245,166,35,0.5)); }
}
.spin-wheel__pointer {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 30px solid var(--accent);
    z-index: 10; filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
#wheelCanvas {
    width: 100%; height: 100%;
    filter: drop-shadow(0 0 30px rgba(245,166,35,.3));
}
.spin-wheel__btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #d18014);
    border: 3px solid #fff; color: #fff;
    font-family: var(--font-display); font-weight: 800;
    font-size: 14px; letter-spacing: 1.5px;
    cursor: pointer; z-index: 10;
    box-shadow: 0 4px 15px rgba(245,166,35,.5);
    transition: transform .2s, box-shadow .2s;
}
.spin-wheel__btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(245,166,35,.7);
}
.spin-wheel__btn:disabled {
    opacity: .6; cursor: not-allowed;
    transform: translate(-50%, -50%);
}

/* Spin result popup */
.spin-result {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.85); z-index: 9999;
    align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
}
.spin-result.gtb-active { display: flex; }
.spin-result__box {
    position: relative; overflow: visible;
    background: linear-gradient(170deg, #1c2547 0%, #1a1410 50%, #1a2244 100%);
    border: 2px solid var(--accent);
    border-radius: 20px; padding: 110px 32px 28px;
    text-align: center; max-width: 420px; width: 90%;
    margin-top: 80px;
    box-shadow: 0 0 60px rgba(245,166,35,.25), 0 0 120px rgba(245,166,35,.1);
    animation: popIn .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn { from { transform: scale(.7) translateY(30px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.spin-result__img {
    width: 180px; height: auto; display: block;
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    z-index: 2;
}
.spin-result__close {
    position: absolute; top: 12px; right: 14px;
    background: none; border: none; color: var(--text-muted);
    font-size: 28px; cursor: pointer; line-height: 1;
    transition: color .2s; z-index: 2;
}
.spin-result__close:hover { color: #fff; }
.spin-result__glow {
    position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(245,166,35,.3) 0%, transparent 70%);
    pointer-events: none;
}
.spin-result__congrats {
    font-family: var(--font-display); font-size: 16px;
    color: var(--text-muted); letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.spin-result__subtitle {
    font-family: var(--font-display); font-size: 28px;
    color: var(--accent); letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(245,166,35,.4);
    margin: 0 0 24px;
}
.spin-result__prizes {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 14px; margin-bottom: 28px;
}
.spin-result__prize-block {
    display: flex; flex-direction: column; align-items: center;
}
.spin-result__prize-num {
    font-family: var(--font-display); font-size: 52px;
    color: var(--accent); line-height: 1; font-weight: 900;
    text-shadow: 0 0 20px rgba(245,166,35,.4);
}
.spin-result__prize-label {
    font-size: 12px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px; margin-top: 6px;
}
.spin-result__plus {
    font-size: 32px; color: var(--accent); font-weight: 700;
    margin-top: 10px;
}
.spin-result__cta {
    display: block; width: 100%;
    padding: 16px 0; border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #d18014);
    color: #fff !important; font-weight: 800; font-size: 16px;
    text-decoration: none !important; text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(245,166,35,.4);
    transition: transform .2s, box-shadow .2s;
}
.spin-result__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(245,166,35,.6);
}

@media (max-width: 968px) {
    .lucky-wheel-section__inner { grid-template-columns: 1fr; gap: 28px; }
    .lucky-wheel-section__text h2 { text-align: center; border-left: none; padding-left: 0; }
    .spin-wheel { max-width: 320px; }
}
@media (max-width: 480px) {
    .spin-wheel { max-width: 280px; }
    .spin-wheel__btn { width: 64px; height: 64px; font-size: 12px; }
    .spin-result__box { padding: 90px 22px 22px; }
    .spin-result__prize-num { font-size: 42px; }
    .spin-result__subtitle { font-size: 22px; }
}
@media (max-width: 600px) {
    .gtb-trust-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gtb-quick-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gtb-quick-card { padding: 16px 10px; }
    .gtb-quick-card__title { font-size: 14px; }
}

/* ====== FAQ SECTION WRAPPER ====== */
.gtb-faq-section { max-width: 1200px; margin-left: auto; margin-right: auto; padding: 0 24px; margin-bottom: 40px; }

/* ====== DETAILS/SUMMARY FAQ (subpages) ====== */
.gtb-qa-section { max-width: 1100px; margin: 24px auto; padding: 0 24px; }
.gtb-qa-section h2 {
    font-family: var(--font-display);
    text-align: left;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .2px;
    margin: 36px 0 22px;
    padding-left: 18px;
    border-left: 5px solid var(--accent);
    line-height: 1.15;
}
.gtb-qa-section details {
    border: 1px solid var(--edge); border-radius: var(--rds-s);
    margin-bottom: 8px; overflow: hidden;
}
.gtb-qa-section summary {
    background: var(--bg-card); color: var(--text-white);
    font-size: 14px; font-weight: 600; padding: 16px 20px;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.gtb-qa-section summary::-webkit-details-marker { display: none; }
.gtb-qa-section summary::after { content: '+'; font-size: 20px; color: var(--accent); transition: transform var(--speed); }
.gtb-qa-section details[open] summary::after { transform: rotate(45deg); }
.gtb-qa-section details > div,
.gtb-qa-section details > p {
    padding: 0 20px 16px; font-size: 13px;
    color: var(--text-muted); line-height: 1.6;
    font-family: var(--font);
}
.gtb-qa-section details a { color: var(--accent); text-decoration: underline; }

/* ====== LEGAL PAGES ====== */
.gtb-legal-content { padding: 0 24px; max-width: 800px; margin: 0 auto 40px; font-family: var(--font); }
.gtb-legal-content h1 {
    font-size: 24px; color: var(--text-white); margin-bottom: 8px;
}
.gtb-legal-content .last-updated {
    font-size: 12px; color: var(--text-muted); margin-bottom: 24px;
}
.gtb-legal-content h2 {
    font-size: 18px; color: var(--text-white); margin: 24px 0 10px;
}
.gtb-legal-content p, .gtb-legal-content li {
    font-size: 14px; color: var(--text-light); line-height: 1.7;
    margin-bottom: 10px;
}
.gtb-legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.gtb-legal-content a { color: var(--accent); text-decoration: underline; }

/* ====== 404 PAGE ====== */
.gtb-error-page {
    text-align: center; padding: 80px 24px 60px;
    min-height: 60vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.error-page__code {
    font-size: 120px; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 16px;
}
.gtb-error-page h1 { font-size: 24px; color: var(--text-white); margin-bottom: 12px; }
.gtb-error-page p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; max-width: 500px; }
.error-page__links {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    margin-top: 20px;
}
.error-page__links a { color: var(--accent); text-decoration: underline; font-size: 14px; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1080px) {
    .gtb-topbar { display: none; }
    .gtb-mobile-header { display: flex; }
    .sidebar { display: none; }
    .layout { display: block; grid-template-columns: 1fr; }
    main { padding-top: 76px; }
    .gtb-banner { min-height: 300px; }
    .gtb-banner__body { padding: 40px 20px; }
    .gtb-banner__offer { font-size: 36px; }
    .gtb-slot-tile { flex: 0 0 calc((100% - 36px) / 4); }
    .gtb-vendor-tile { flex: 0 0 calc((100% - 36px) / 4); }
    .features { grid-template-columns: repeat(2, 1fr); }
    .gtb-footer__top { flex-direction: column; }
    .gtb-pros-cons { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .gtb-bonus-tiers { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .gtb-slot-tile { flex: 0 0 calc((100% - 12px) / 2.2); }
    .gtb-vendor-tile { flex: 0 0 calc((100% - 12px) / 2.2); }
    .gtb-banner { min-height: 420px; align-items: flex-end; }
    .gtb-banner::after { background: url('../../gallery/hero-bg-mobile.webp') center bottom/cover no-repeat; }
    .gtb-banner__body { padding: 50px 16px 26px; }
    .banner__tag { font-size: 11px; padding: 5px 14px; background: rgba(245,166,35,.3); margin-bottom: 12px; }
    .gtb-banner__offer { font-size: 28px; }
    .gtb-banner__sub { font-size: 14px; }
    .banner__logo { width: 140px; }
    .features { grid-template-columns: 1fr; }
    .gtb-slot-section, .jackpot-feed, .gtb-block { padding: 0 16px; }
    .cta-section { margin: 0 16px 32px; padding: 32px 16px; }
    .gtb-footer { padding: 32px 16px 16px; }
    .highlight-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr; }
    .gtb-bonus-tiers { grid-template-columns: 1fr 1fr; }
    .gtb-breadcrumbs { padding: 12px 16px 0; }
    .gtb-legal-content { padding: 0 16px; }
    .gtb-error-page { padding: 60px 16px 40px; }
    .error-page__code { font-size: 80px; }
    .info-table { font-size: 12px; }
    .info-table th, .info-table td { padding: 8px 10px; }
    .gtb-rating-box { max-width: 100%; }
}

/* mobile H1 center+raise */
@media (max-width: 600px){
  .gtb-banner__body { text-align: center; padding-bottom: 34px; }
}

/* desktop: center whole footer block (mobile stays left) */
@media (min-width: 601px){
  .gtb-footer__top, .gtb-footer__pays, .gtb-footer__badges, .gtb-footer__bottom, .gtb-footer__providers { max-width: 1100px; margin-left: auto; margin-right: auto; }
  .gtb-footer__top { justify-content: center; }
  .gtb-footer__pays, .gtb-footer__badges { justify-content: center; }
  .gtb-footer__bottom { text-align: center; }
}

/* desktop: hero full image (no crop) */
@media (min-width:601px){
  .gtb-banner { aspect-ratio: 21 / 9; }
  .gtb-banner::after { background-position: center center; background-size: cover; }
}

html,body{overflow-x:hidden;overflow-x:clip;max-width:100%;}

/* self-hosted fonts */


@font-face{font-family:'Archivo';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/Archivo-700-normal-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Archivo';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/Archivo-700-normal-latin.woff2') format('woff2');}
@font-face{font-family:'Archivo';font-style:normal;font-weight:800;font-display:swap;src:url('fonts/Archivo-800-normal-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Archivo';font-style:normal;font-weight:800;font-display:swap;src:url('fonts/Archivo-800-normal-latin.woff2') format('woff2');}
@font-face{font-family:'Manrope';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/Manrope-400-normal-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Manrope';font-style:normal;font-weight:400;font-display:swap;src:url('fonts/Manrope-400-normal-latin.woff2') format('woff2');}




@font-face{font-family:'Manrope';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/Manrope-700-normal-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Manrope';font-style:normal;font-weight:700;font-display:swap;src:url('fonts/Manrope-700-normal-latin.woff2') format('woff2');}
@font-face{font-family:'Manrope';font-style:normal;font-weight:800;font-display:swap;src:url('fonts/Manrope-800-normal-latin-ext.woff2') format('woff2');}
@font-face{font-family:'Manrope';font-style:normal;font-weight:800;font-display:swap;src:url('fonts/Manrope-800-normal-latin.woff2') format('woff2');}

/* phone: show device image cleanly (no frame, no bg) */
.gtb-phone-mockup{background:transparent!important;border:none!important;box-shadow:none!important;padding:0!important;width:300px!important;height:auto!important;margin:0 auto!important;}
.gtb-phone-mockup::before{display:none!important;}
.gtb-phone-screen{background:transparent!important;border-radius:0!important;overflow:visible!important;height:auto!important;}
.gtb-phone-screen__app{position:static!important;width:100%!important;height:auto!important;object-fit:contain!important;}
.gtb-mobile-section__visual{display:flex!important;justify-content:center!important;}
