/* GameTwist Casino CZ – site-1 stylesheet
   Prefix: gt-
   Theme: dark navy/purple, green CTA
   Font: Rajdhani (headings) + Open Sans (body)
   Breakpoints: 320, 768, 1024, 1440
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0D0B2E;
    color: #E8E0FF;
    line-height: 1.65;
    min-width: 320px;
    padding-bottom: 64px; /* promo bar height */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #7EC8E3;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #fff;
}

ul, ol {
    list-style: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.gt-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.gt-section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gt-subsection-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #C5B8E8;
    margin: 40px 0 16px;
    border-left: 3px solid #00C853;
    padding-left: 14px;
}

.gt-section-lead {
    font-size: 17px;
    color: #C5B8E8;
    margin-bottom: 32px;
    max-width: 720px;
}

.gt-text {
    font-size: 15px;
    color: #C5B8E8;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 760px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.gt-btn {
    display: inline-block;
    background: #00C853;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.gt-btn:hover {
    background: #00E060;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.35);
    color: #fff;
}

.gt-btn--sm {
    padding: 8px 18px;
    font-size: 13px;
}

.gt-btn--lg {
    padding: 13px 30px;
    font-size: 15px;
}

.gt-btn--xl {
    padding: 16px 40px;
    font-size: 17px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}

/* ============================================================
   PROMO BAR
   ============================================================ */
.gt-promo-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, #1A1240 0%, #2B1F6E 100%);
    border-top: 2px solid #00C853;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gt-promo-bar.is-hidden {
    display: none;
}

.gt-promo-bar__text {
    color: #E8E0FF;
    font-size: 13px;
    font-weight: 600;
    flex: 1;
    min-width: 200px;
}

.gt-promo-bar__close {
    background: transparent;
    border: none;
    color: #C5B8E8;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}

.gt-promo-bar__close:hover {
    color: #fff;
}

/* ============================================================
   HEADER
   ============================================================ */
.gt-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #120F35;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.gt-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 16px;
}

.gt-logo {
    flex-shrink: 0;
}

.gt-logo img {
    height: 36px;
    width: auto;
}

.gt-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.gt-nav a {
    color: #C5B8E8;
    text-decoration: none;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.gt-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.gt-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Burger button */
.gt-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.gt-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #C5B8E8;
    border-radius: 2px;
    transition: all 0.3s;
}

.gt-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.gt-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.gt-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   TOC
   ============================================================ */
.gt-toc {
    background: #18134A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gt-toc__list {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    padding: 0 0;
}

.gt-toc__list li a {
    display: block;
    color: #C5B8E8;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 16px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.gt-toc__list li a:hover {
    color: #fff;
    border-bottom-color: #00C853;
}

/* ============================================================
   HERO
   ============================================================ */
.gt-hero {
    background: linear-gradient(135deg, #0D0B2E 0%, #1A1240 55%, #0F0D3A 100%);
    padding: 60px 0 56px;
}

.gt-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.gt-hero__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 20px;
    color: #fff;
}

.gt-hero__title span {
    color: #00C853;
}

.gt-hero__lead {
    font-size: 16px;
    color: #C5B8E8;
    margin-bottom: 32px;
    line-height: 1.75;
}

.gt-hero__img img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

/* ============================================================
   SECTION: JAK FUNGUJE
   ============================================================ */
.gt-segment {
    padding: 64px 0;
    background: #0F0D35;
}

.gt-split {
    display: grid;
    gap: 40px;
}

/* Steps */
.gt-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.gt-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px 20px;
    transition: border-color 0.2s;
}

.gt-step:hover {
    border-color: rgba(0, 200, 83, 0.4);
}

.gt-step__num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #00C853;
    color: #0D0B2E;
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gt-step__body strong {
    display: block;
    color: #fff;
    font-size: 15px;
    margin-bottom: 4px;
}

.gt-step__body p {
    color: #C5B8E8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   SECTION: GAMES OVERVIEW
   ============================================================ */
.gt-games-overview {
    padding: 64px 0;
    background: #0D0B2E;
}

.gt-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.gt-cat-card {
    background: #18134A;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: block;
}

.gt-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    border-color: #00C853;
}

.gt-cat-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gt-cat-card__body {
    padding: 18px 20px;
}

.gt-cat-card__title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.gt-cat-card__body p {
    color: #C5B8E8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   SECTION: SLOTS
   ============================================================ */
.gt-slots {
    padding: 64px 0;
    background: #0F0D35;
}

.gt-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0 32px;
}

.gt-slot-card {
    background: #1A1558;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    text-align: center;
}

.gt-slot-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 200, 83, 0.5);
}

.gt-slot-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.gt-slot-card span {
    display: block;
    padding: 8px 10px;
    color: #C5B8E8;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gt-center-cta {
    text-align: center;
    margin-top: 16px;
}

/* ============================================================
   SECTION: LIVE CASINO
   ============================================================ */
.gt-live {
    padding: 64px 0;
    background: #0D0B2E;
}

.gt-live-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.gt-live-card {
    background: #18134A;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gt-live-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.gt-live-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.gt-live-card__label {
    padding: 12px 14px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

/* ============================================================
   SECTION: TABLE GAMES
   ============================================================ */
.gt-table-games {
    padding: 64px 0;
    background: #0F0D35;
}

.gt-table-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.gt-table-card {
    background: #1A1558;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}

.gt-table-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 200, 83, 0.4);
}

.gt-table-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.gt-table-card__title {
    padding: 10px 14px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

/* ============================================================
   SECTION: SIGNUP / REGISTRACE
   ============================================================ */
.gt-signup {
    padding: 64px 0;
    background: #0D0B2E;
}

.gt-signup__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.gt-signup__img img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
}

/* Checklist */
.gt-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 28px;
}

.gt-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E8E0FF;
    font-size: 15px;
}

.gt-checklist li svg {
    flex-shrink: 0;
}

/* ============================================================
   SECTION: PAYMENTS
   ============================================================ */
.gt-payments {
    padding: 64px 0;
    background: #0F0D35;
}

.gt-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 24px 0 40px;
}

.gt-payment-icons img {
    height: 36px;
    max-width: 80px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    object-fit: contain;
}

/* Tables */
.gt-table-wrap {
    overflow-x: auto;
    margin-bottom: 32px;
    border-radius: 8px;
}

.gt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 400px;
}

.gt-table th {
    background: #1A1558;
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 2px solid #00C853;
}

.gt-table td {
    padding: 11px 16px;
    color: #C5B8E8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gt-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* ============================================================
   SECTION: HOW TO PLAY
   ============================================================ */
.gt-how-to {
    padding: 64px 0;
    background: #0D0B2E;
}

.gt-guide {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    counter-reset: none;
}

.gt-guide__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 4px solid #00C853;
    border-radius: 8px;
    padding: 18px 22px;
    transition: background 0.2s;
}

.gt-guide__item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.gt-guide__num {
    flex-shrink: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #00C853;
    line-height: 1;
    min-width: 40px;
}

.gt-guide__body strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 6px;
}

.gt-guide__body p {
    color: #C5B8E8;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   SECTION: BONUSES
   ============================================================ */
.gt-bonuses {
    padding: 64px 0;
    background: #0F0D35;
}

.gt-bonus-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0 40px;
}

.gt-bonus-card {
    background: #18134A;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gt-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.gt-bonus-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gt-bonus-card__body {
    padding: 16px 18px;
}

.gt-bonus-card__tag {
    display: inline-block;
    background: rgba(0, 200, 83, 0.15);
    color: #00C853;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.gt-bonus-card__value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.gt-bonus-card__body p {
    color: #C5B8E8;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* No deposit card */
.gt-nodeposit-wrap,
.gt-freespins-wrap {
    margin: 20px 0 40px;
}

.gt-nodeposit-card,
.gt-freespins-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    background: #18134A;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
    max-width: 760px;
}

.gt-nodeposit-card img,
.gt-freespins-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gt-nodeposit-card__content,
.gt-freespins-card__content {
    padding: 24px 28px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gt-nodeposit-card__content p,
.gt-freespins-card__content p {
    color: #C5B8E8;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

/* Badges */
.gt-badge {
    display: inline-block;
    background: rgba(0, 200, 83, 0.15);
    color: #00C853;
    border: 1px solid rgba(0, 200, 83, 0.4);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 14px;
    border-radius: 4px;
}

.gt-badge--gold {
    background: rgba(255, 195, 0, 0.12);
    color: #FFC300;
    border-color: rgba(255, 195, 0, 0.4);
}

/* ============================================================
   SECTION: HOW TO WIN
   ============================================================ */
.gt-winning {
    padding: 64px 0;
    background: #0D0B2E;
}

.gt-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.gt-tip-card {
    background: #18134A;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 24px 20px;
    transition: border-color 0.2s, transform 0.2s;
}

.gt-tip-card:hover {
    border-color: rgba(0, 200, 83, 0.4);
    transform: translateY(-2px);
}

.gt-tip-card__icon {
    margin-bottom: 16px;
}

.gt-tip-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.gt-tip-card p {
    color: #C5B8E8;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.gt-faq {
    padding: 64px 0;
    background: #0F0D35;
}

.gt-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.gt-acc-item {
    background: #18134A;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    overflow: hidden;
}

.gt-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    transition: background 0.2s;
}

.gt-acc-trigger:hover {
    background: rgba(255, 255, 255, 0.04);
}

.gt-acc-question {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    flex: 1;
}

.gt-acc-arrow {
    flex-shrink: 0;
    color: #00C853;
    transition: transform 0.3s;
}

.gt-acc-trigger[aria-expanded="true"] .gt-acc-arrow {
    transform: rotate(180deg);
}

.gt-acc-body {
    padding: 0 22px 18px;
    display: none;
}

.gt-acc-body.is-open {
    display: block;
}

.gt-acc-body p {
    color: #C5B8E8;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   AUTHOR BLOCK
   ============================================================ */
.gt-author-block {
    padding: 48px 0;
    background: #0D0B2E;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gt-author {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #18134A;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 28px 32px;
    max-width: 760px;
}

.gt-author__avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00C853;
}

.gt-author__name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.gt-author__title {
    font-size: 13px;
    color: #00C853;
    font-weight: 600;
    margin-bottom: 12px;
}

.gt-author__bio {
    color: #C5B8E8;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.gt-footer {
    background: #080720;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 48px 0 24px;
}

.gt-footer__grid {
    display: grid;
    grid-template-columns: 1fr 160px 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.gt-footer__brand img {
    margin-bottom: 14px;
}

.gt-footer__brand p {
    color: #8A82B4;
    font-size: 13px;
    line-height: 1.65;
}

.gt-footer__links strong,
.gt-footer__info strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.gt-footer__links a {
    color: #8A82B4;
    font-size: 14px;
    transition: color 0.2s;
}

.gt-footer__links a:hover {
    color: #fff;
}

.gt-footer__info p {
    color: #8A82B4;
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 8px;
}

.gt-footer__info a {
    color: #7EC8E3;
}

.gt-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gt-age-warn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8A82B4;
    font-size: 13px;
    line-height: 1.55;
}

.gt-copyright {
    color: #5A5380;
    font-size: 12px;
}

/* ============================================================
   RESPONSIVE: 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .gt-hero__title {
        font-size: 36px;
    }

    .gt-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gt-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gt-live-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gt-table-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gt-bonus-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .gt-tips {
        grid-template-columns: repeat(3, 1fr);
    }

    .gt-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   RESPONSIVE: 768px
   ============================================================ */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }

    /* Header */
    .gt-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #120F35;
        padding: 12px;
        gap: 2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 99;
    }

    .gt-nav.is-open {
        display: flex;
    }

    .gt-nav a {
        padding: 12px 16px;
        border-radius: 6px;
    }

    .gt-burger {
        display: flex;
    }

    /* Hero */
    .gt-hero {
        padding: 40px 0;
    }

    .gt-hero__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gt-hero__title {
        font-size: 30px;
    }

    .gt-hero__img {
        order: -1;
    }

    /* Sections */
    .gt-segment,
    .gt-games-overview,
    .gt-slots,
    .gt-live,
    .gt-table-games,
    .gt-signup,
    .gt-payments,
    .gt-how-to,
    .gt-bonuses,
    .gt-winning,
    .gt-faq,
    .gt-author-block {
        padding: 48px 0;
    }

    .gt-section-title {
        font-size: 26px;
    }

    /* Grids */
    .gt-cat-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gt-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gt-live-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gt-table-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gt-bonus-row {
        grid-template-columns: 1fr;
    }

    .gt-tips {
        grid-template-columns: 1fr;
    }

    /* Signup */
    .gt-signup__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gt-signup__img {
        order: -1;
    }

    /* No deposit / freespins cards */
    .gt-nodeposit-card,
    .gt-freespins-card {
        grid-template-columns: 1fr;
    }

    .gt-nodeposit-card__content,
    .gt-freespins-card__content {
        padding: 20px;
    }

    /* Footer */
    .gt-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Author */
    .gt-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
    }

    /* Promo bar */
    .gt-promo-bar {
        padding: 8px 14px;
    }

    .gt-promo-bar__text {
        font-size: 12px;
    }
}

/* ============================================================
   RESPONSIVE: 480px / 320px
   ============================================================ */
@media (max-width: 480px) {
    .gt-hero__title {
        font-size: 26px;
    }

    .gt-section-title {
        font-size: 22px;
    }

    .gt-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gt-live-grid {
        grid-template-columns: 1fr;
    }

    .gt-table-grid {
        grid-template-columns: 1fr;
    }

    .gt-btn--xl {
        padding: 14px 28px;
        font-size: 16px;
    }

    .gt-step {
        flex-direction: column;
        gap: 10px;
    }

    .gt-guide__item {
        flex-direction: column;
        gap: 10px;
    }

    .gt-guide__num {
        font-size: 22px;
    }

    .gt-toc__list li a {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ============================================================
   RESPONSIVE: MIN 1440px
   ============================================================ */
@media (min-width: 1440px) {
    .gt-container {
        max-width: 1280px;
    }

    .gt-hero__title {
        font-size: 50px;
    }

    .gt-slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
