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

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

body {
    font-family: 'Poppins', sans-serif;
    background: #989255;
    color: #1a1200;
    line-height: 1.6;
    overflow-x: hidden
}

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

a {
    color: #CA9B05;
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #f0d060
}

ul {
    list-style: none
}

:root {
    --clr-header: #D6B25D;
    --clr-footer: #D6B25D;
    --clr-bg: #989255;
    --clr-btn-gold: #CA9B05;
    --clr-btn-lime: #C0F022;
    --clr-text-dark: #1a1200;
    --clr-text-light: #fff8e7;
    --clr-card: #7d7a44;
    --clr-card2: #b5a84e;
    --clr-border: #c9a93a;
    --clr-accent: #f0d060;
    --clr-dark: #2a1e00;
    --clr-shadow: rgba(0, 0, 0, 0.35);
    --radius: 10px;
    --radius-lg: 18px;
    --trans: 0.25s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem
}

.gq-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.gq-main {
    flex: 1
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
    text-decoration: none;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .3)
}

.btn:active {
    transform: translateY(0)
}

.btn--sm {
    font-size: .78rem;
    padding: .45rem 1rem
}

.btn--md {
    font-size: .9rem;
    padding: .6rem 1.4rem
}

.btn--lg {
    font-size: 1.05rem;
    padding: .85rem 2rem
}

.btn--gold {
    background: var(--clr-btn-gold);
    color: #fff8e7
}

.btn--gold:hover {
    background: #dba805;
    color: #fff
}

.btn--lime {
    background: var(--clr-btn-lime);
    color: #1a1200
}

.btn--lime:hover {
    background: #d4f82a;
    color: #000
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.gq-header {
    background: var(--clr-header);
    box-shadow: 0 3px 16px rgba(0, 0, 0, .25);
    position: sticky;
    top: 0;
    z-index: 1000
}

.gq-header-inner {
    padding-top: .7rem;
    padding-bottom: .7rem
}

.hdr-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap
}

.hdr-logo-wrap {
    flex-shrink: 0
}

.hdr-logo img {
    height: 44px;
    width: auto;
    object-fit: contain
}

.hdr-center-nav {
    display: flex;
    align-items: center
}

.hdr-nav-list {
    display: flex;
    gap: .1rem;
    flex-wrap: nowrap
}

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem .7rem;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 500;
    color: #ffffff;
    transition: background var(--trans), color var(--trans);
    white-space: nowrap
}

.hdr-nav-link:hover {
    background: rgba(0, 0, 0, .12);
    color: #000
}

.nav-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

.hdr-right-wrap {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-left: auto;
    flex-shrink: 0
}

.hdr-online-counter {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--clr-text-dark);
    white-space: nowrap
}

.hdr-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc40;
    box-shadow: 0 0 0 2px rgba(46, 204, 64, .35);
    animation: pulse 1.8s infinite
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(46, 204, 64, .35)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(46, 204, 64, .1)
    }
}

.hdr-lang-wrap {
    position: relative
}

.hdr-lang-btn {
    display: flex;
    align-items: center;
    gap: .3rem;
    background: rgba(0, 0, 0, .1);
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 6px;
    padding: .38rem .65rem;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--clr-text-dark);
    transition: background var(--trans)
}

.hdr-lang-btn:hover {
    background: rgba(0, 0, 0, .18)
}

.lang-arrow {
    width: 12px;
    height: 12px;
    transition: transform var(--trans)
}

.hdr-lang-btn.open .lang-arrow {
    transform: rotate(180deg)
}

.hdr-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff8e7;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 28px var(--clr-shadow);
    min-width: 150px;
    overflow: hidden;
    z-index: 999
}

.hdr-lang-dropdown.open {
    display: block;
    animation: fadeSlide .18s ease
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    font-size: .83rem;
    color: var(--clr-text-dark);
    transition: background var(--trans)
}

.lang-option:hover, .lang-option.active {
    background: rgba(202, 155, 5, .15);
    color: #CA9B05
}

.hdr-cta-btns {
    display: flex;
    gap: .5rem;
    flex-shrink: 0
}

.hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    border-radius: 4px
}

.hdr-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text-dark);
    border-radius: 2px;
    transition: transform .28s, opacity .28s
}

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

.hdr-burger.active span:nth-child(2) {
    opacity: 0
}

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

.hdr-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 998
}

.hdr-mobile-overlay.active {
    display: block
}

.gq-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #2a1e00
}

.gq-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-banner.jpg');
    background-size: cover;
    background-position: center top;
    z-index: 0;
    transition: transform 8s ease
}

.gq-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 12, 0, .78) 0%, rgba(60, 40, 0, .45) 60%, rgba(20, 12, 0, .65) 100%)
}

.gq-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 3rem 0
}

.gq-hero-badge {
    display: inline-block;
    background: var(--clr-btn-lime);
    color: #1a1200;
    font-size: .72rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding: .28rem .8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1.1rem
}

.gq-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #fff8e7;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5)
}

.gq-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 248, 231, .85);
    line-height: 1.65;
    margin-bottom: 1.8rem;
    max-width: 540px
}

.gq-hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.hero-stat-val {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-btn-lime)
}

.hero-stat-lbl {
    font-size: .72rem;
    color: rgba(255, 248, 231, .7);
    text-transform: uppercase;
    letter-spacing: .05em
}

.gq-hero-btns {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap
}

.gq-section {
    padding: 3.5rem 0
}

.gq-section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--clr-text-light);
    text-align: center;
    margin-bottom: .5rem
}

.gq-section-sub {
    text-align: center;
    color: rgba(255, 248, 231, .75);
    font-size: .95rem;
    margin-bottom: 2.2rem
}

.gq-card {
    background: rgba(255, 248, 231, .07);
    border: 1px solid rgba(201, 169, 58, .25);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans)
}

.gq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .28);
    border-color: rgba(201, 169, 58, .6)
}

.gq-advantages {
    background: rgba(0, 0, 0, .18)
}

.adv-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem
}

.adv-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem
}

.adv-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #CA9B05, #f0d060);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.adv-icon svg {
    width: 26px;
    height: 26px;
    stroke: #1a1200;
    fill: none;
    stroke-width: 2
}

.adv-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--clr-text-light);
    font-size: .95rem
}

.adv-desc {
    font-size: .85rem;
    color: rgba(255, 248, 231, .72);
    line-height: 1.5
}

.gq-winners {
    background: rgba(0, 0, 0, .1)
}

.winners-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg)
}

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

.winners-table th {
    background: var(--clr-btn-gold);
    color: #fff8e7;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .7rem 1rem;
    text-align: left;
    border-bottom: 2px solid var(--clr-border)
}

.winners-table td {
    padding: .65rem 1rem;
    font-size: .9rem;
    border-bottom: 1px solid rgba(201, 169, 58, .2);
    color: var(--clr-text-light);
    transition: background var(--trans)
}

.winners-table tr:hover td {
    background: rgba(202, 155, 5, .1)
}

.winners-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, .08)
}

.winner-rank {
    font-weight: 700;
    font-family: 'Montserrat', sans-serif
}

.winner-rank--1 {
    color: #FFD700;
    font-size: 1.1rem
}

.winner-rank--2 {
    color: #C0C0C0
}

.winner-rank--3 {
    color: #CD7F32
}

.winner-amt {
    font-weight: 700;
    color: var(--clr-btn-lime);
    font-family: 'Montserrat', sans-serif
}

.gq-app {
    background: rgba(0, 0, 0, .15)
}

.app-content {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 2rem;
    align-items: start
}

.app-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius)
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 280px
}

.app-table th, .app-table td {
    text-align: left;
    padding: .65rem 1rem;
    border: 1.5px solid rgba(201, 169, 58, .35);
    font-size: .88rem;
    color: var(--clr-text-light)
}

.app-table th {
    background: rgba(202, 155, 5, .2);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--clr-accent)
}

.app-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, .08)
}

.app-download-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: .8rem;
    background: rgba(255, 248, 231, .08);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius);
    padding: .9rem 1.2rem;
    color: var(--clr-text-light);
    font-family: 'Montserrat', sans-serif;
    transition: background var(--trans), border-color var(--trans), transform var(--trans);
    cursor: pointer;
    text-decoration: none
}

.app-dl-btn:hover {
    background: rgba(202, 155, 5, .15);
    border-color: var(--clr-btn-gold);
    transform: translateX(4px);
    color: var(--clr-text-light)
}

.app-dl-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0
}

.app-dl-text {
    display: flex;
    flex-direction: column
}

.app-dl-label {
    font-size: .68rem;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: .06em
}

.app-dl-name {
    font-size: .95rem;
    font-weight: 700
}

.gq-games-block {
    background: rgba(0, 0, 0, .22);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 2rem 0
}

.gq-games-header {
    text-align: center;
    margin-bottom: 1.5rem
}

.gq-games-badge {
    display: inline-block;
    background: var(--clr-btn-gold);
    color: #fff8e7;
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 20px;
    margin-bottom: .7rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: .07em
}

.gq-games-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--clr-text-light);
    margin-bottom: .4rem
}

.gq-games-sub {
    color: rgba(255, 248, 231, .72);
    font-size: .9rem
}

.gq-iframe-wrap {
    position: relative;
    border-radius: var(--radius);
    background: #111;
    aspect-ratio: 16/9;
    max-height: 520px
}

.gq-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

.gq-iframe-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0, 0, 0, .55);
    transition: opacity .3s
}

.gq-iframe-overlay.hidden {
    opacity: 0;
    pointer-events: none
}

.gq-iframe-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}

.gq-iframe-play-icon {
    width: 80px;
    height: 80px;
    transition: transform .2s
}

.gq-iframe-overlay:hover .gq-iframe-play-icon {
    transform: scale(1.1)
}

.gq-iframe-preview-text {
    color: #fff8e7;
    font-size: .9rem;
    font-weight: 600
}

.gq-games-footer-cta {
    text-align: center;
    margin-top: 1.5rem
}

.gq-games-note {
    font-size: .78rem;
    color: rgba(255, 248, 231, .6);
    margin-top: .6rem
}

.gq-strategies {
    background: rgba(0, 0, 0, .1)
}

.strat-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem
}

.strat-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.strat-card-img {
    height: 160px;
    background: linear-gradient(135deg, #4a3800, #8a6a00);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.strat-card-img svg {
    width: 70px;
    height: 70px;
    opacity: .6
}

.strat-card-body {
    padding: 1.3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.strat-card-name {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text-light)
}

.strat-card-desc {
    font-size: .85rem;
    color: rgba(255, 248, 231, .72);
    line-height: 1.5;
    flex: 1
}

.strat-card-tag {
    display: inline-block;
    font-size: .7rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: .22rem .6rem;
    border-radius: 20px;
    letter-spacing: .06em
}

.tag-aggressive {
    background: rgba(192, 240, 34, .2);
    color: #C0F022;
    border: 1px solid rgba(192, 240, 34, .3)
}

.tag-medium {
    background: rgba(202, 155, 5, .2);
    color: #f0d060;
    border: 1px solid rgba(202, 155, 5, .3)
}

.tag-conservative {
    background: rgba(50, 150, 50, .2);
    color: #7af07a;
    border: 1px solid rgba(50, 150, 50, .3)
}

.gq-faq {
    background: rgba(0, 0, 0, .12)
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.faq-item {
    border: 1.5px solid rgba(201, 169, 58, .28);
    border-radius: var(--radius);
    overflow: hidden
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.3rem;
    background: rgba(255, 248, 231, .04);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    color: var(--clr-text-light);
    border: none;
    text-align: left;
    transition: background var(--trans);
    gap: 1rem
}

.faq-question:hover {
    background: rgba(202, 155, 5, .1)
}

.faq-question.open {
    background: rgba(202, 155, 5, .12);
    color: var(--clr-accent)
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform var(--trans)
}

.faq-question.open .faq-arrow {
    transform: rotate(180deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.4, 0, .2, 1), padding .28s
}

.faq-answer.open {
    max-height: 600px;
    padding: .2rem 0 1rem
}

.faq-answer-inner {
    padding: 0 1.3rem;
    font-size: .9rem;
    color: rgba(255, 248, 231, .8);
    line-height: 1.65
}

.gq-author {
    background: rgba(0, 0, 0, .18)
}

.author-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 680px;
    margin: 0 auto
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--clr-border);
    object-fit: cover;
    flex-shrink: 0;
    background: linear-gradient(135deg, #CA9B05, #f0d060);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.author-avatar svg {
    width: 40px;
    height: 40px;
    fill: rgba(255, 248, 231, .6)
}

.author-info {
    flex: 1
}

.author-name {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text-light)
}

.author-role {
    font-size: .82rem;
    color: var(--clr-btn-lime);
    font-weight: 600;
    margin: .2rem 0 .5rem
}

.author-bio {
    font-size: .85rem;
    color: rgba(255, 248, 231, .72);
    line-height: 1.5
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    color: var(--clr-btn-gold);
    font-weight: 600;
    margin-top: .6rem;
    transition: color var(--trans)
}

.author-link:hover {
    color: var(--clr-accent)
}

.gq-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0
}

.gq-article-content {
    padding: 3rem 1.25rem
}

.gq-h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2
}

.gq-article-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--clr-accent);
    margin: 2rem 0 .8rem;
    border-left: 4px solid var(--clr-btn-gold);
    padding-left: .9rem
}

.gq-article-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin: 1.5rem 0 .5rem
}

.gq-article-content p {
    color: rgba(255, 248, 231, .82);
    line-height: 1.7;
    margin-bottom: 1rem
}

.gq-article-content ul, .gq-article-content ol {
    margin: .5rem 0 1rem 1.2rem;
    color: rgba(255, 248, 231, .8)
}

.gq-article-content ul {
    list-style: disc
}

.gq-article-content ol {
    list-style: decimal
}

.gq-article-content li {
    margin-bottom: .4rem;
    line-height: 1.6
}

.gq-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    overflow-x: auto;
    display: block
}

.gq-article-content th {
    background: rgba(202, 155, 5, .2);
    color: var(--clr-accent);
    padding: .6rem .9rem;
    border: 1.5px solid rgba(201, 169, 58, .35);
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .85rem
}

.gq-article-content td {
    padding: .55rem .9rem;
    border: 1.5px solid rgba(201, 169, 58, .25);
    color: rgba(255, 248, 231, .8);
    font-size: .88rem
}

.gq-article-content a {
    color: var(--clr-btn-gold)
}

.gq-footer {
    background: var(--clr-footer)
}

.ftr-wrap {
    padding: 2.5rem 0 1rem
}

.ftr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem
}

.ftr-top {
    display: grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem
}

.ftr-col--brand .ftr-logo img {
    height: 44px;
    width: auto
}

.ftr-tagline {
    font-size: .8rem;
    color: rgba(26, 18, 0, .7);
    margin: .8rem 0 1rem;
    line-height: 1.5
}

.ftr-provider-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: rgba(26, 18, 0, .65)
}

.ftr-provider-logo img {
    height: 26px;
    width: auto
}

.ftr-nav-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--clr-text-dark);
    margin-bottom: .7rem
}

.ftr-nav-list {
    display: flex;
    flex-direction: column;
    gap: .35rem
}

.ftr-nav-list a {
    font-size: .85rem;
    color: rgba(26, 18, 0, .75);
    transition: color var(--trans)
}

.ftr-nav-list a:hover {
    color: var(--clr-text-dark)
}

.ftr-cta-stack {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.ftr-cta-btn {
    width: 100%;
    justify-content: center
}

.ftr-payments {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem
}

.payment-logo {
    width: 48px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0
}

.payment-logo svg {
    width: 100%;
    height: 100%
}

.ftr-trust {
    border-top: 1px solid rgba(26, 18, 0, .15);
    border-bottom: 1px solid rgba(26, 18, 0, .15);
    padding: 1rem 0;
    margin-bottom: 1rem
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    align-items: center
}

.trust-badge {
    height: 32px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    opacity: .85;
    transition: opacity var(--trans)
}

.trust-badge:hover {
    opacity: 1
}

.trust-badge svg {
    height: 32px;
    width: auto
}

.ftr-bottom {
    padding-top: .5rem
}

.ftr-copy {
    font-size: .8rem;
    color: rgba(26, 18, 0, .65);
    margin-bottom: .3rem
}

.ftr-legal {
    font-size: .75rem;
    color: rgba(26, 18, 0, .5);
    line-height: 1.5
}

.ftr-legal a {
    color: rgba(26, 18, 0, .65)
}

.gq-technical-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 0
}

.gq-breadcrumb {
    font-size: .8rem;
    color: rgba(255, 248, 231, .6);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: wrap
}

.gq-breadcrumb a {
    color: var(--clr-btn-gold)
}

.gq-bc-sep {
    color: rgba(255, 248, 231, .4)
}

.gq-technical-body {
    margin-top: 1.5rem
}

.gq-technical-body h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    color: var(--clr-accent);
    margin: 2rem 0 .7rem;
    border-left: 4px solid var(--clr-btn-gold);
    padding-left: .8rem
}

.gq-technical-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin: 1.2rem 0 .4rem
}

.gq-technical-body p {
    color: rgba(255, 248, 231, .8);
    line-height: 1.7;
    margin-bottom: .9rem;
    font-size: .92rem
}

.gq-technical-body ul, .gq-technical-body ol {
    margin: .4rem 0 .9rem 1.2rem;
    color: rgba(255, 248, 231, .78)
}

.gq-technical-body ul {
    list-style: disc
}

.gq-technical-body ol {
    list-style: decimal
}

.gq-technical-body li {
    margin-bottom: .35rem;
    line-height: 1.6;
    font-size: .9rem
}

.gq-main--technical {
    padding: 1.5rem 1.25rem 3rem
}

.flag-icon {
    font-size: 1rem;
    line-height: 1
}

.wp-block-separator {
    display: none
}

.elementor-hidden {
    display: none
}

.e-con-inner {
    display: contents
}

@media (max-width: 1024px) {
    .ftr-top {
        grid-template-columns:1fr 1fr
    }

    .hdr-nav-link span {
        display: none
    }

    .hdr-nav-link {
        padding: .4rem .5rem
    }

    .hdr-online-label {
        display: none
    }
}

@media (max-width: 768px) {
    .hdr-center-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 82%;
        max-width: 320px;
        height: 100%;
        background: #2a1e00;
        z-index: 999;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem;
        box-shadow: 4px 0 24px rgba(0, 0, 0, .5);
        transition: transform .3s
    }

    .hdr-center-nav.mobile-open {
        display: flex
    }

    .hdr-nav-list {
        flex-direction: column;
        gap: .2rem;
        width: 100%
    }

    .hdr-nav-link {
        font-size: .95rem;
        padding: .75rem 1rem;
        width: 100%;
        border-radius: 8px
    }

    .hdr-nav-link span {
        display: inline
    }

    .hdr-burger {
        display: flex
    }

    .hdr-lang-wrap {
        order: 5
    }

    .hdr-online-counter {
        display: none
    }

    .gq-hero {
        min-height: 420px
    }

    .gq-hero h1 {
        font-size: 1.65rem
    }

    .gq-hero-stats {
        gap: 1rem
    }

    .app-content {
        grid-template-columns:1fr
    }

    .ftr-top {
        grid-template-columns:1fr 1fr
    }

    .author-card {
        flex-direction: column
    }

    .strat-grid {
        grid-template-columns:1fr
    }
}

@media (max-width: 540px) {
    .ftr-top {
        grid-template-columns:1fr
    }

    .gq-hero {
        min-height: 360px
    }

    .gq-hero h1 {
        font-size: 1.35rem
    }

    .gq-bonus-widget-inner {
        gap: .6rem
    }

    .adv-grid {
        grid-template-columns:1fr
    }

    .hdr-cta-btns {
        gap: .35rem
    }

    .hdr-cta-btns .btn--sm {
        font-size: .7rem;
        padding: .38rem .7rem
    }
}

.gq-fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease
}

.gq-fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.gq-stagger > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease
}

.gq-stagger.visible > *:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .05s
}

.gq-stagger.visible > *:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .12s
}

.gq-stagger.visible > *:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .19s
}

.gq-stagger.visible > *:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .26s
}

.gq-stagger.visible > *:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .33s
}

.gq-stagger.visible > *:nth-child(6) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .4s
}

.d3f9x, .a8k2m, .p3x9r, .b9k3z, .e7f2a {
    position: static
}

.fcvfg {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 32px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 215, 120, 0.22);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.fcvfg section {
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 120, 0.12);
    border-radius: 18px;
}

.fcvfg h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: #fff7d6;
    margin-bottom: 24px;
    overflow-wrap: break-word;
}

.fcvfg h2 {
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.3;
    color: #ffd76d;
    margin-bottom: 16px;
    overflow-wrap: break-word;
}

.fcvfg h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #ffe9a8;
    margin-bottom: 14px;
    overflow-wrap: break-word;
}

.fcvfg p,
.fcvfg li {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.fcvfg ul,
.fcvfg ol {
    padding-left: 22px;
    margin: 18px 0;
}

.fcvfg a {
    color: #fff27a;
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.fcvfg a:hover {
    color: #c0f022;
}

.fcvfg table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.fcvfg table th,
.fcvfg table td {
    padding: 14px 18px;
    border: 1px solid rgba(255, 215, 120, 0.18);
    color: rgba(255, 255, 255, 0.9);
}

.fcvfg table th {
    background: rgba(255, 215, 120, 0.12);
    color: #ffd76d;
}

.fcvfg img,
.fcvfg iframe {
    max-width: 100%;
    border-radius: 16px;
}

.fcvfg pre,
.fcvfg code {
    max-width: 100%;
    overflow-x: auto;
}

@media (max-width: 768px) {
    .fcvfg {
        padding: 18px;
        margin: 20px 12px;
        border-radius: 18px;
    }

    .fcvfg section {
        padding: 18px;
        margin-bottom: 20px;
        border-radius: 14px;
    }

    .fcvfg h1 {
        font-size: 1.8rem;
    }

    .fcvfg h2 {
        font-size: 1.35rem;
    }

    .fcvfg p,
    .fcvfg li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .fcvfg table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .fcvfg table::-webkit-scrollbar {
        height: 6px;
    }

    .fcvfg table::-webkit-scrollbar-thumb {
        background: #d6b25d;
        border-radius: 20px;
    }

    .fcvfg iframe {
        min-height: 240px;
    }
}

@media (max-width: 480px) {
    .fcvfg {
        padding: 14px;
        margin: 16px 8px;
    }

    .fcvfg section {
        padding: 14px;
    }

    .fcvfg h1 {
        font-size: 1.55rem;
    }

    .fcvfg h2 {
        font-size: 1.2rem;
    }

    .fcvfg p,
    .fcvfg li {
        font-size: 0.92rem;
    }

    .fcvfg a {
        font-size: 0.92rem;
    }
}