/* golazzo-shell.css - self-hosted type, no external font CDN */
@font-face {
    font-family: 'RajdhaniLocal';
    src: url('../fonts/rajdhani-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RajdhaniLocal';
    src: url('../fonts/rajdhani-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DmSansLocal';
    src: url('../fonts/dmsans-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DmSansLocal';
    src: url('../fonts/dmsans-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --gz-surface-deep: #0a0f1a;
    --gz-surface-mid: #111827;
    --gz-accent-cyan: #00d2ff;
    --gz-accent-amber: #c47a2a;
    --gz-text-primary: #e8edf5;
    --gz-text-muted: #9aafc8;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DmSansLocal', system-ui, sans-serif;
    line-height: 1.6;
    color: #e8edf5;
    background: #0a0f1a;
}

.gz-app-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Masthead upper bar */
.site-masthead {
    position: sticky;
    top: 0;
    z-index: 900;
    background: linear-gradient(180deg, #0d1528 0%, #0a0f1a 100%);
    border-bottom: 1px solid rgba(0, 210, 255, 0.15);
}

.masthead-upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 24px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Burger trigger - hidden on desktop, top-left on mobile */
.nav-drawer-trigger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgba(0, 40, 70, 0.5);
    border: 1px solid rgba(0, 210, 255, 0.35);
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    order: -1;
}

.nav-drawer-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #7de8ff;
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
}

.nav-drawer-trigger.is-open .nav-drawer-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-drawer-trigger.is-open .nav-drawer-bar:nth-child(2) {
    opacity: 0;
}

.nav-drawer-trigger.is-open .nav-drawer-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 850;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-drawer-backdrop.is-visible {
    display: block;
    opacity: 1;
}

.masthead-brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.masthead-brand-img {
    height: 36px;
    width: auto;
    display: block;
}

.masthead-brand-text {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.masthead-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.masthead-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: border-color 0.2s, background 0.2s;
}

.masthead-btn-outline {
    color: #7de8ff;
    border: 1px solid rgba(0, 210, 255, 0.55);
    background: rgba(0, 40, 70, 0.4);
}

.masthead-btn-outline:hover {
    border-color: #00d2ff;
    background: rgba(0, 80, 120, 0.35);
}

.masthead-btn-accent {
    color: #fff;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #c47a2a 0%, #8b4e12 100%);
}

.masthead-btn-accent:hover {
    filter: brightness(1.1);
}

/* Horizontal nav rail - point (a) */
.nav-rail {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 10, 22, 0.85);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nav-rail::-webkit-scrollbar {
    display: none;
}

.nav-rail-list {
    display: flex;
    align-items: stretch;
    list-style: none;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 12px;
    gap: 2px;
}

.nav-rail-item {
    flex: 0 0 auto;
}

.nav-rail-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    min-width: 88px;
    text-decoration: none;
    color: #9aafc8;
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.nav-rail-link:hover {
    color: #c8e8ff;
    background: rgba(0, 120, 180, 0.12);
}

.nav-rail-link.is-active {
    color: #00d2ff;
    border-bottom-color: #00d2ff;
    background: rgba(0, 150, 210, 0.15);
}

.nav-rail-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.nav-rail-icon {
    width: 22px;
    height: 22px;
    display: block;
}

.nav-rail-label {
    text-align: center;
    line-height: 1.2;
    max-width: 90px;
}

/* Main stage wrapper */
.gz-main-stage {
    flex: 1;
    min-height: calc(100vh - 120px);
}

.main-content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 24px;
}

/* Legacy button class */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #c47a2a 0%, #8b4e12 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Hero carousel - preserves native banner aspect ratio */
.hero-carousel {
    position: relative;
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 210, 255, 0.22);
    background: #0d1220;
}

.hero-carousel-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 768 / 245;
}

@media (max-width: 768px) {
    .hero-carousel-viewport {
        aspect-ratio: 250 / 245;
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s;
}

.hero-slide.is-visible {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #0a0f1a;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
    z-index: 2;
}

.hero-slide-lead {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-slide-sub {
    color: #b8d0e8;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.hero-slide-cta {
    display: inline-block;
    padding: 9px 22px;
    background: linear-gradient(135deg, #c47a2a 0%, #8b4e12 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'RajdhaniLocal', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid rgba(255, 180, 80, 0.4);
}

.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 210, 255, 0.4);
    background: rgba(0, 20, 40, 0.75);
    color: #7de8ff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel-arrow-prev {
    left: 10px;
}

.hero-carousel-arrow-next {
    right: 10px;
}

.hero-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
}

.hero-carousel-dot.is-active {
    background: #00d2ff;
    box-shadow: 0 0 6px rgba(0, 210, 255, 0.7);
}

/* Legacy promo banner fallback */
.promotional-banners {
    margin-bottom: 24px;
}

.promo-banner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 210, 255, 0.2);
    margin-bottom: 12px;
}

.promo-banner picture {
    display: block;
}

.promo-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.promo-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.promo-banner-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.promo-banner-text {
    margin-bottom: 10px;
    color: #c8e0f0;
    font-size: 0.9rem;
}

.promo-banner-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #c47a2a 0%, #8b4e12 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
}

/* Games */
.game-section {
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    font-style: italic;
}

.show-all-btn {
    padding: 6px 14px;
    border: 1px solid rgba(0, 210, 255, 0.4);
    text-decoration: none;
    color: #7de8ff;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

.game-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #111827;
    border-radius: 8px;
    overflow: hidden;
}

.game-image-wrapper {
    position: relative;
    background: #0d1220;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: 3 / 4;
    transition: transform 0.25s ease;
}

.game-action-row {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    width: 100%;
    background: rgba(0, 10, 25, 0.82);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 2;
}

@media (hover: hover) {
    .game-card:hover .game-action-row {
        opacity: 1;
        visibility: visible;
    }

    .game-card:hover .game-image {
        transform: scale(1.04);
    }
}

.game-card.is-actions-visible .game-action-row {
    opacity: 1;
    visibility: visible;
}

.game-card.is-actions-visible .game-image {
    transform: scale(1.04);
}

.game-action-btn {
    width: 100%;
    max-width: 130px;
    padding: 8px 10px;
    text-align: center;
    text-decoration: none;
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid transparent;
}

.game-action-btn-demo {
    color: #7de8ff;
    background: rgba(0, 60, 100, 0.5);
    border-color: rgba(0, 210, 255, 0.35);
}

.game-action-btn-play {
    color: #fff;
    background: linear-gradient(135deg, #0088cc 0%, #005588 100%);
    border-color: rgba(0, 210, 255, 0.5);
}

.game-play-btn {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 16px;
    background: linear-gradient(135deg, #0088cc 0%, #005588 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 210, 255, 0.5);
    border-radius: 4px;
    white-space: nowrap;
}

.game-title {
    padding: 10px;
    text-align: center;
    font-size: 0.8rem;
    color: #c8d8ea;
}

/* Bonuses */
.bonuses-section {
    margin-bottom: 36px;
}

.bonuses-section .section-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 210, 255, 0.12);
}

.bonuses-section .section-title {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    position: relative;
}

.bonuses-section .section-title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gz-accent-cyan), transparent);
    margin-top: 10px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}

.bonus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 24, 39, 0.9);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}

.bonus-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gz-accent-cyan), var(--gz-accent-amber));
    opacity: 0;
    transition: opacity 0.2s;
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 210, 255, 0.35);
    box-shadow: 0 16px 40px rgba(0, 210, 255, 0.12);
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.bonus-image {
    width: 100%;
    height: auto;
    max-height: 180px;
    display: block;
    object-fit: cover;
    background: linear-gradient(180deg, #111827 0%, #0a0f1a 100%);
    transition: transform 0.3s;
}

.bonus-card:hover .bonus-image {
    transform: scale(1.03);
}

.bonus-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 16px;
    gap: 8px;
}

.bonus-name {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.bonus-description {
    margin-bottom: 0;
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--gz-text-muted);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bonus-value {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.18), rgba(0, 210, 255, 0.06));
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 4px;
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gz-accent-cyan);
    letter-spacing: 0.02em;
}

.bonus-category {
    margin-top: 2px;
}

.bonus-category-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(10, 15, 26, 0.8);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7de8ff;
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 999px;
}

.bonus-terms {
    margin-top: auto;
    padding: 10px 12px;
    background: rgba(10, 15, 26, 0.6);
    border-radius: 4px;
    border-left: 2px solid rgba(0, 210, 255, 0.25);
    font-size: 0.74rem;
    line-height: 1.5;
    color: #7a8fa8;
}

/* Text Content - SEO block only uses h1/h2/h3 */
.text-content {
    max-width: 920px;
    margin: 32px auto 40px;
    padding: 28px 28px 32px;
    color: #c8d8ea;
    background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(0, 210, 255, 0.05) 0%, transparent 55%),
        rgba(17, 24, 39, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.text-content h1 {
    position: relative;
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 16px;
    line-height: 1.25;
    color: #fff;
}

.text-content h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--gz-accent-cyan), transparent);
    border-radius: 2px;
}

.text-content h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 700;
    margin: 28px 0 12px;
    padding: 10px 0 10px 14px;
    border-left: 3px solid var(--gz-accent-cyan);
    color: #fff;
}

.text-content h3 {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 22px 0 10px;
    color: var(--gz-accent-cyan);
}

.text-content p {
    margin-bottom: 14px;
    line-height: 1.75;
}

.text-content img {
    max-width: 100%;
    height: auto;
    margin: 16px 0;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.text-content a {
    color: var(--gz-accent-cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 210, 255, 0.35);
    transition: color 0.2s, border-color 0.2s;
}

.text-content a:hover {
    color: #fff;
    border-color: var(--gz-accent-cyan);
}

.text-content blockquote {
    margin: 16px 0;
    padding: 14px 18px;
    border-left: 3px solid var(--gz-accent-cyan);
    background: rgba(0, 210, 255, 0.06);
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: var(--gz-text-muted);
}

/* FAQ */
.faq-wrapper {
    margin: 24px 0;
}

.faq-item-block {
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
    background: rgba(10, 15, 26, 0.6);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item-block:hover {
    border-color: rgba(0, 210, 255, 0.25);
}

.faq-question-block {
    padding: 14px 16px;
    background: rgba(0, 210, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question-block strong {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.faq-answer-block {
    padding: 14px 16px;
    line-height: 1.65;
    color: var(--gz-text-muted);
}

/* HowTo */
.howto-wrapper {
    margin: 24px 0;
    padding: 20px;
    background: rgba(10, 15, 26, 0.6);
    border: 1px solid rgba(0, 210, 255, 0.15);
    border-radius: 8px;
}

.howto-steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.howto-step-item {
    counter-increment: step-counter;
    padding: 14px 14px 14px 16px;
    margin-bottom: 10px;
    background: rgba(17, 24, 39, 0.8);
    border-left: 3px solid var(--gz-accent-cyan);
    border-radius: 0 6px 6px 0;
    transition: background 0.2s;
}

.howto-step-item:hover {
    background: rgba(0, 210, 255, 0.06);
}

.howto-step-item::before {
    content: counter(step-counter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    font-family: 'RajdhaniLocal', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--gz-accent-cyan);
    background: rgba(0, 210, 255, 0.12);
    border-radius: 50%;
    vertical-align: middle;
}

.howto-step-item strong {
    display: block;
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #fff;
}

/* List containers inside text-content */
.text-content .list-container ul,
.text-content .list-container ol {
    margin: 12px 0 20px;
    padding: 16px 20px 16px 36px;
    background: rgba(10, 15, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.text-content .list-container ul li,
.text-content .list-container ol li {
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--gz-text-muted);
}

.text-content .list-container ul li::marker {
    color: var(--gz-accent-cyan);
}

.text-content .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.text-content table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
}

.text-content th,
.text-content td {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.text-content th {
    background: rgba(0, 210, 255, 0.1);
    font-family: 'RajdhaniLocal', sans-serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
}

.text-content td {
    color: var(--gz-text-muted);
}

.text-content caption {
    padding: 10px;
    font-family: 'RajdhaniLocal', sans-serif;
    font-weight: 700;
    color: var(--gz-accent-cyan);
    caption-side: top;
    text-align: left;
}

/* Breadcrumbs */
.breadcrumb-nav {
    margin: 0 0 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb-link {
    color: #7a8fa8;
    text-decoration: none;
    font-size: 0.8rem;
}

.breadcrumb-link:hover {
    color: #00d2ff;
}

.breadcrumb-divider {
    color: #4a6080;
}

/* Footer */
.site-footer {
    position: relative;
    margin-top: auto;
    background:
        radial-gradient(ellipse 80% 55% at 50% 0%, rgba(0, 210, 255, 0.07) 0%, transparent 55%),
        linear-gradient(180deg, #0d1528 0%, #060a14 100%);
    border-top: 1px solid rgba(0, 210, 255, 0.15);
    padding: 0 0 28px;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gz-accent-cyan) 35%, #7de8ff 50%, var(--gz-accent-cyan) 65%, transparent 100%);
    opacity: 0.85;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-payzone {
    margin: 28px 0 32px;
    padding: 18px 20px;
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid rgba(0, 210, 255, 0.18);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-payzone-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-payzone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 210, 255, 0.12);
    color: var(--gz-accent-cyan);
}

.footer-payzone-title {
    font-family: 'RajdhaniLocal', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gz-text-primary);
}

.footer-payzone-track {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-paychip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 96px;
    flex: 1 1 96px;
    max-width: 130px;
    padding: 12px 10px;
    background: rgba(10, 15, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.footer-paychip:hover {
    border-color: rgba(0, 210, 255, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.1);
}

.footer-paychip img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-paychip span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gz-text-muted);
    letter-spacing: 0.03em;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px 28px;
    margin-bottom: 32px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.footer-brand-link {
    display: inline-flex;
    text-decoration: none;
}

.footer-brand-img {
    height: 36px;
    width: auto;
    opacity: 0.9;
}

.footer-brand-text {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 4px;
    font-family: 'RajdhaniLocal', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}

.footer-cta--primary {
    background: linear-gradient(135deg, var(--gz-accent-amber) 0%, #8b4e12 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 14px rgba(196, 122, 42, 0.3);
}

.footer-cta--primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.footer-cta--secondary {
    background: transparent;
    border: 1px solid rgba(0, 210, 255, 0.35);
    color: #7de8ff;
}

.footer-cta--secondary:hover {
    border-color: var(--gz-accent-cyan);
    background: rgba(0, 80, 120, 0.25);
}

.footer-cta--accent {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.35);
    color: var(--gz-accent-cyan);
}

.footer-cta--accent:hover {
    background: rgba(0, 210, 255, 0.18);
}

.footer-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-section-title::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gz-accent-cyan);
    box-shadow: 0 0 8px rgba(0, 210, 255, 0.6);
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: #7a8fa8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    transition: color 0.2s, transform 0.15s;
}

.footer-links a::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--gz-accent-cyan);
    transition: width 0.2s;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--gz-accent-cyan);
    transform: translateX(3px);
}

.footer-links a:hover::before,
.footer-links a.active::before {
    width: 10px;
}

.footer-social {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 14px;
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #7de8ff;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.footer-social-link:hover {
    border-color: rgba(0, 210, 255, 0.4);
    background: rgba(0, 210, 255, 0.08);
}

.footer-social-image {
    max-height: 24px;
    width: auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-safe-head {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gz-text-muted);
    margin-bottom: 14px;
}

.footer-safe-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0 0 18px;
}

.footer-safe-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-safe-link,
.footer-safe-item--static {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 48px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    transition: opacity 0.2s, border-color 0.2s;
}

.footer-safe-link:hover {
    border-color: rgba(0, 210, 255, 0.25);
}

.safe-image {
    max-height: 36px;
    width: auto;
    display: block;
    opacity: 0.9;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 720px;
    margin: 0 auto;
}

.footer-legal-copy {
    font-size: 0.78rem;
    color: #5a7090;
}

.footer-legal-note {
    font-size: 0.72rem;
    color: rgba(90, 112, 144, 0.85);
    line-height: 1.5;
}

/* List Container */
.list-container {
    margin: 16px 0;
}

.list-container ul,
.list-container ol {
    margin: 16px 0;
    padding-left: 28px;
}

.list-container ul li,
.list-container ol li {
    margin-bottom: 6px;
}

/* App Info Table */
.gz-app-sheet {
    max-width: 720px;
    width: 100%;
    margin: 20px auto 28px;
    padding: 3px;
    box-sizing: border-box;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.45) 0%, rgba(0, 210, 255, 0.12) 50%, rgba(196, 122, 42, 0.35) 100%);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 210, 255, 0.1);
}

.app-info-table-wrapper {
    margin: 0;
}

.app-info-table-container {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 210, 255, 0.12) 0%, transparent 55%),
        rgba(17, 24, 39, 0.95);
}

.app-info-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.app-info-icon-col {
    width: 52px;
}

.app-info-value-col {
    width: auto;
}

.app-info-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.app-info-row:not(:first-child):not(:last-child):hover {
    background: rgba(0, 210, 255, 0.04);
}

.app-info-row:first-child {
    border-bottom: 1px solid rgba(0, 210, 255, 0.15);
}

.app-info-row:first-child .app-info-value-cell,
.app-info-row:first-child .app-info-value-cell--full {
    padding: 28px 24px 24px;
    text-align: center;
    background: transparent;
}

.app-info-row:last-child .app-info-value-cell,
.app-info-row:last-child .app-info-value-cell--full {
    padding: 20px 24px 28px;
    text-align: center;
}

.app-info-label-cell {
    width: 52px;
    padding: 14px 12px 14px 16px;
    text-align: center;
    vertical-align: middle;
    background: transparent;
}

.app-info-value-cell {
    padding: 14px 16px 14px 0;
    color: var(--gz-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    vertical-align: middle;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.app-info-row:not(:first-child):not(:last-child) .app-info-value-cell {
    color: var(--gz-text-primary);
    font-weight: 500;
}

.app-info-row:nth-child(3) .app-info-value-cell,
.app-info-row:nth-child(4) .app-info-value-cell,
.app-info-row:nth-child(5) .app-info-value-cell,
.app-info-row:nth-child(6) .app-info-value-cell {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--gz-accent-cyan);
}

.app-name-with-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.app-name-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 18px;
    padding: 10px;
    background: rgba(10, 15, 26, 0.8);
    border: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.app-name-text {
    font-family: 'RajdhaniLocal', sans-serif;
    font-weight: 700;
    font-size: 1.45rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.app-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    max-width: 100%;
    padding: 14px 32px;
    box-sizing: border-box;
    background: linear-gradient(135deg, var(--gz-accent-amber) 0%, #8b4e12 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'RajdhaniLocal', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(196, 122, 42, 0.4);
    transition: filter 0.2s, transform 0.15s;
}

.app-download-link:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.app-info-icon {
    width: 22px;
    height: 22px;
    color: var(--gz-accent-cyan);
    padding: 6px;
    box-sizing: content-box;
    background: rgba(0, 210, 255, 0.12);
    border-radius: 10px;
}

/* 404 */
.gz-missing-page {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - 180px);
    padding: 48px 20px 72px;
    isolation: isolate;
}

.gz-missing-page::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(420px, 80vw);
    height: min(420px, 80vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, rgba(0, 210, 255, 0.05) 45%, transparent 70%);
    z-index: -1;
    animation: gz-missing-glow 4s ease-in-out infinite;
}

.gz-missing-page::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    width: min(280px, 70vw);
    height: min(280px, 70vw);
    border: 1px dashed rgba(0, 210, 255, 0.22);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

@keyframes gz-missing-glow {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

.error-code-display {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: clamp(5rem, 18vw, 9rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 0%, #7de8ff 45%, var(--gz-accent-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 8px 32px rgba(0, 210, 255, 0.4));
    letter-spacing: -0.04em;
}

.error-title-display {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: clamp(1.15rem, 3.2vw, 1.55rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    max-width: 520px;
}

.gz-missing-page__text {
    color: var(--gz-text-muted);
    margin-bottom: 32px;
    max-width: 440px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.gz-missing-page__btn {
    min-width: 200px;
    padding: 14px 28px;
    font-size: 0.85rem;
    box-shadow: 0 8px 28px rgba(196, 122, 42, 0.35);
}

/* Support / Contact page */
.gz-support-shell {
    max-width: 760px;
    margin: 0 auto;
    padding: 8px 20px 40px;
}

.gz-page-support .gz-support-shell .text-content {
    position: relative;
    max-width: none;
    margin-top: 16px;
    padding: 36px 32px 32px;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 210, 255, 0.1) 0%, transparent 60%),
        rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.gz-page-support .gz-support-shell .text-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gz-accent-cyan), #7de8ff, var(--gz-accent-cyan));
}

.gz-page-support .gz-support-shell .text-content h1 {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #fff 30%, var(--gz-accent-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gz-page-support .gz-support-shell .text-content > p:first-of-type {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 28px;
    color: var(--gz-text-primary);
}

.gz-page-support .gz-support-shell .text-content h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gz-accent-cyan);
    margin: 32px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 210, 255, 0.15);
}

.gz-page-support .gz-support-shell .text-content h2::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gz-accent-cyan);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
    flex-shrink: 0;
}

.gz-page-support .gz-support-shell .text-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 1rem;
    color: var(--gz-text-primary);
    margin: 0;
    padding: 16px 18px 0;
    background: rgba(10, 15, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
}

.gz-page-support .gz-support-shell .text-content h3::before {
    content: "";
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(0, 210, 255, 0.12);
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}

.gz-page-support .gz-support-shell .text-content h3:nth-of-type(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d2ff' stroke-width='2'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='M4 8l8 5 8-5'/%3E%3C/svg%3E");
}

.gz-page-support .gz-support-shell .text-content h3:nth-of-type(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d2ff' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
}

.gz-page-support .gz-support-shell .text-content h3 + p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 16px;
    padding: 14px 18px 18px;
    background: rgba(10, 15, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px dashed rgba(255, 255, 255, 0.06);
    border-radius: 0 0 6px 6px;
    color: var(--gz-text-muted);
    line-height: 1.65;
}

.gz-page-support .gz-support-shell .text-content h3 + p a {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--gz-accent-amber) 0%, #8b4e12 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'RajdhaniLocal', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(196, 122, 42, 0.35);
    transition: filter 0.2s, transform 0.15s;
}

.gz-page-support .gz-support-shell .text-content h3 + p a:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.gz-page-support .gz-support-shell .text-content h2:last-of-type + p {
    padding: 18px 20px;
    background: rgba(10, 15, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gz-text-muted);
}

/* Legal pages (privacy, terms) */
.gz-doc-shell {
    max-width: 860px;
    margin: 0 auto;
    padding: 8px 20px 48px;
}

.gz-page-doc .gz-doc-shell .text-content {
    position: relative;
    max-width: none;
    margin-top: 20px;
    padding: 36px 32px 36px;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 210, 255, 0.08) 0%, transparent 55%),
        rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(0, 210, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.gz-page-doc .gz-doc-shell .text-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gz-accent-cyan), transparent);
    border-radius: 8px 8px 0 0;
}

.gz-page-doc .gz-doc-shell .text-content h1 {
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 210, 255, 0.15);
    color: #fff;
}

.gz-page-doc .gz-doc-shell .text-content > p:first-of-type {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--gz-text-muted);
    margin-bottom: 8px;
}

.gz-page-doc .gz-doc-shell .text-content h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    margin: 32px 0 14px;
    padding: 12px 16px;
    background: rgba(10, 15, 26, 0.7);
    border-left: 3px solid var(--gz-accent-cyan);
    border-radius: 0 6px 6px 0;
    color: var(--gz-text-primary);
}

.gz-page-doc .gz-doc-shell .text-content h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.15), transparent);
    margin-left: 8px;
}

.gz-page-doc .gz-doc-shell .text-content p {
    line-height: 1.75;
    color: var(--gz-text-muted);
}

.gz-page-doc .gz-doc-shell .text-content ul,
.gz-page-doc .gz-doc-shell .text-content ol {
    margin: 12px 0 20px;
    padding: 16px 20px 16px 36px;
    background: rgba(10, 15, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    list-style: none;
}

.gz-page-doc .gz-doc-shell .text-content ul li,
.gz-page-doc .gz-doc-shell .text-content ol li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 4px;
    color: var(--gz-text-muted);
    line-height: 1.6;
}

.gz-page-doc .gz-doc-shell .text-content ul li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gz-accent-cyan);
}

.gz-page-doc .gz-doc-shell .text-content ol {
    counter-reset: gz-doc-step;
}

.gz-page-doc .gz-doc-shell .text-content ol li {
    counter-increment: gz-doc-step;
}

.gz-page-doc .gz-doc-shell .text-content ol li::before {
    content: counter(gz-doc-step);
    position: absolute;
    left: -24px;
    top: 0.1em;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'RajdhaniLocal', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gz-accent-cyan);
    background: rgba(0, 210, 255, 0.12);
    border-radius: 50%;
}

.gz-page-doc .gz-doc-shell .text-content a {
    color: var(--gz-accent-cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 210, 255, 0.4);
    transition: color 0.2s, border-color 0.2s;
}

.gz-page-doc .gz-doc-shell .text-content a:hover {
    color: #fff;
    border-color: var(--gz-accent-cyan);
}

.gz-page-doc .gz-doc-shell .text-content blockquote {
    border-left-color: var(--gz-accent-cyan);
    background: rgba(0, 210, 255, 0.06);
}

@media (max-width: 768px) {
    .nav-drawer-trigger {
        display: flex;
    }

    .masthead-upper {
        padding: 10px 14px;
        padding-left: 10px;
    }

    .masthead-brand-img {
        height: 28.8px;
    }

    .masthead-brand-text {
        font-size: 1.32rem;
    }

    .footer-brand-img {
        height: 28.8px;
    }

    .footer-brand-text {
        font-size: 1rem;
    }

    .app-name-logo {
        width: 57.6px;
        height: 57.6px;
    }

    .gz-app-sheet {
        margin: 12px 0 20px;
    }

    .app-info-icon-col {
        width: 44px;
    }

    .app-info-row:first-child .app-info-value-cell,
    .app-info-row:first-child .app-info-value-cell--full {
        padding: 20px 16px 16px;
    }

    .app-info-row:last-child .app-info-value-cell,
    .app-info-row:last-child .app-info-value-cell--full {
        padding: 16px;
    }

    .app-info-label-cell {
        width: 44px;
        padding: 12px 8px 12px 14px;
    }

    .app-info-value-cell {
        padding: 12px 14px 12px 0;
    }

    .app-info-row:nth-child(2) .app-info-label-cell {
        vertical-align: top;
        padding-top: 14px;
    }

    .app-info-row:nth-child(2) .app-info-value-cell {
        vertical-align: top;
        padding-top: 12px;
    }

    .app-name-text {
        font-size: 1.25rem;
    }

    .app-download-link {
        width: 100%;
        min-width: 0;
    }

    .nav-rail {
        position: fixed;
        top: 0;
        left: 0;
        width: min(280px, 85vw);
        height: 100vh;
        height: 100dvh;
        z-index: 900;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: none;
        border-right: 1px solid rgba(0, 210, 255, 0.2);
        overflow-y: auto;
        padding-top: 60px;
    }

    .nav-rail.is-drawer-open {
        transform: translateX(0);
    }

    .nav-rail-list {
        flex-direction: column;
        padding: 8px 0;
        gap: 0;
    }

    .nav-rail-link {
        flex-direction: row;
        justify-content: flex-start;
        min-width: unset;
        width: 100%;
        padding: 14px 20px;
        border-bottom: none;
        border-left: 3px solid transparent;
        font-size: 0.75rem;
        gap: 12px;
    }

    .nav-rail-link.is-active {
        border-left-color: #00d2ff;
        border-bottom-color: transparent;
    }

    .nav-rail-label {
        max-width: none;
        text-align: left;
        font-size: 0.75rem;
    }

    .main-content-wrapper {
        padding: 14px;
    }

    .nav-rail-link {
        min-width: 72px;
        padding: 8px 10px;
    }

    .nav-rail-label {
        font-size: 0.6rem;
        max-width: 72px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .text-content h1 {
        font-size: 1.4rem;
    }

    .text-content h2 {
        font-size: 1.2rem;
    }

    .text-content h3 {
        font-size: 1.05rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-payzone-track {
        justify-content: center;
    }

    .footer-paychip {
        min-width: 80px;
        flex: 1 1 80px;
        max-width: 110px;
    }

    .footer-cta-row {
        width: 100%;
    }

    .footer-cta {
        flex: 1 1 auto;
        text-align: center;
    }
}
