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

:root {
    --c-bg: #042522;
    --c-hdr: #053029;
    --c-btn-green: #013D33;
    --c-btn-purple: #B30AD7;
    --c-text: #e8f0ee;
    --c-text-muted: #9ab8b2;
    --c-border: #0d4a3e;
    --c-card: #062d29;
    --c-card2: #073530;
    --c-accent: #00e5b0;
    --c-gold: #f5c842;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .6);
    --trans: all .25s ease;
}

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

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden
}

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

a {
    color: var(--c-accent);
    text-decoration: none;
    transition: var(--trans)
}

a:hover {
    opacity: .85
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.25;
    color: #fff
}

strong {
    color: #fff
}

.x-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px
}

.x-section-wrap {
    padding: 64px 0
}

.x-section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 60%, var(--c-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.x-section-sub {
    text-align: center;
    color: var(--c-text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto
}

.xf3c7-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    white-space: nowrap;
    line-height: 1.2
}

.xf3c7-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .4);
    opacity: 1
}

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

.xf3c7-btn--green {
    background: var(--c-btn-green);
    color: #fff;
    box-shadow: 0 2px 12px rgba(1, 61, 51, .5)
}

.xf3c7-btn--green:hover {
    background: #025442
}

.xf3c7-btn--purple {
    background: var(--c-btn-purple);
    color: #fff;
    box-shadow: 0 2px 16px rgba(179, 10, 215, .45)
}

.xf3c7-btn--purple:hover {
    background: #c50ef0;
    box-shadow: 0 4px 24px rgba(179, 10, 215, .7)
}

.xf3c7-btn--outline {
    background: transparent;
    color: var(--c-accent);
    border: 2px solid var(--c-accent)
}

.xf3c7-btn--outline:hover {
    background: rgba(0, 229, 176, .08)
}

.xhdr-outer {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-hdr);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
    border-bottom: 1px solid var(--c-border)
}

.xhdr-container {
    display: grid;
    grid-template-columns:auto 1fr auto auto auto;
    align-items: center;
    gap: 20px;
    padding-top: 12px;
    padding-bottom: 12px
}

.xhdr-logo img {
    height: 44px;
    width: auto
}

.xhdr-nav {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
    justify-content: center
}

.xhdr-nav-link {
    color: var(--c-text-muted);
    font-size: .9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: var(--trans)
}

.xhdr-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .07)
}

.xhdr-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--c-text-muted);
    white-space: nowrap
}

.xhdr-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00e87b;
    animation: xpulse 2s infinite;
    flex-shrink: 0
}

@keyframes xpulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 232, 123, .5)
    }
    50% {
        box-shadow: 0 0 0 6px rgba(0, 232, 123, 0)
    }
}

.xhdr-actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.xhdr-login {
    padding: 8px 18px;
    font-size: .875rem
}

.xhdr-signup {
    padding: 8px 18px;
    font-size: .875rem
}

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

.xhdr-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: var(--trans)
}

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

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

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

.xhdr-mobile-nav {
    display: none;
    background: var(--c-hdr);
    border-top: 1px solid var(--c-border);
    padding: 16px 20px
}

.xhdr-mobile-nav.open {
    display: block
}

.xhdr-mobile-nav ul {
    list-style: none
}

.xhdr-mobile-nav li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.xhdr-mobile-nav a {
    color: var(--c-text);
    font-size: 1rem;
    font-weight: 500
}

.xa1f5-hero {
    background: url('/spinbetter-b.jpg') center/cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative
}

.xa1f5-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 37, 34, .92) 40%, rgba(5, 48, 41, .7));
    z-index: 0
}

.xa1f5-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 20px
}

.xa1f5-hero-content {
    max-width: 640px
}

.xd2b8-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 229, 176, .12);
    border: 1px solid rgba(0, 229, 176, .3);
    color: var(--c-accent);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px
}

.xa1f5-h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15
}

.xa1f5-sub {
    font-size: 1.1rem;
    color: rgba(232, 240, 238, .85);
    margin-bottom: 32px;
    line-height: 1.65
}

.xa1f5-cta-wrap {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.xa1f5-cta {
    padding: 14px 36px;
    font-size: 1.05rem
}

.xa1f5-cta-sec {
    padding: 14px 28px;
    font-size: 1rem
}

.xa1f5-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .85rem;
    color: rgba(232, 240, 238, .7)
}

.xa1f5-trust span {
    display: flex;
    align-items: center;
    gap: 5px
}

.xe8b2-promo-section {
    background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-card) 100%)
}

.xe8b2-promo-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 32px;
    max-width: 760px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden
}

.xe8b2-promo-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(179, 10, 215, .15) 0%, transparent 70%);
    pointer-events: none
}

.xe8b2-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px
}

.xe8b2-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 232, 123, .1);
    border: 1px solid rgba(0, 232, 123, .3);
    color: #00e87b;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600
}

.xe8b2-timer-label {
    color: var(--c-text-muted);
    font-size: .9rem
}

.xe8b2-timer-label span {
    color: var(--c-gold);
    font-weight: 700;
    font-variant-numeric: tabular-nums
}

.xe8b2-code-row {
    display: grid;
    grid-template-columns:1fr auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap
}

.xe8b2-code-display {
    background: rgba(0, 0, 0, .3);
    border: 2px dashed var(--c-accent);
    border-radius: var(--r-md);
    padding: 20px 24px
}

.xe8b2-code-label {
    display: block;
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.xe8b2-code-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: .12em;
    font-family: 'Roboto', monospace
}

.xe8b2-code-actions {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.xe8b2-copy-btn {
    padding: 11px 22px;
    font-size: .9rem
}

.xe8b2-activate-btn {
    padding: 11px 22px;
    font-size: .9rem
}

.xe8b2-bonus-info {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid var(--c-border);
    padding-top: 24px
}

.xe8b2-bonus-item {
    text-align: center
}

.xe8b2-bonus-val {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff
}

.xe8b2-bonus-desc {
    display: block;
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-top: 4px
}

.xadv-section {
}

.xadv-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 16px
}

.xadv-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 24px 20px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.xadv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 229, 176, .25)
}

.xadv-icon {
    font-size: 2rem;
    margin-bottom: 14px
}

.xadv-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff
}

.xadv-card p {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.6
}

.xadv-card--a {
    border-top: 3px solid var(--c-accent)
}

.xadv-card--b {
    border-top: 3px solid #00c4ff
}

.xadv-card--c {
    border-top: 3px solid var(--c-btn-purple)
}

.xadv-card--d {
    border-top: 3px solid var(--c-gold)
}

.xadv-card--e {
    border-top: 3px solid #ff6b6b
}

.xadv-card--f {
    border-top: 3px solid #a8ff78
}

.xadv-card--g {
    border-top: 3px solid #ff9f43
}

.xadv-card--h {
    border-top: 3px solid #48dbfb
}

.xscr-section {
    background: var(--c-card)
}

.xscr-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg)
}

.xscr-track {
    display: flex;
    transition: transform .4s ease
}

.xscr-slide {
    flex: 0 0 100%;
    position: relative
}

.xscr-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover
}

.xscr-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(4, 37, 34, .9), transparent);
    color: #fff;
    padding: 20px 24px;
    font-size: .95rem;
    font-weight: 500
}

.xscr-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(4, 37, 34, .75);
    border: 1px solid rgba(0, 229, 176, .3);
    color: var(--c-accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 5;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center
}

.xscr-btn:hover {
    background: var(--c-accent);
    color: #000
}

.xscr-btn--prev {
    left: 16px
}

.xscr-btn--next {
    right: 16px
}

.xscr-dots {
    position: absolute;
    bottom: 16px;
    right: 24px;
    display: flex;
    gap: 6px
}

.xscr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: var(--trans)
}

.xscr-dot--active {
    background: var(--c-accent);
    width: 24px;
    border-radius: 4px
}

.xtrn-section {
}

.xtrn-slider {
    position: relative
}

.xtrn-track {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.xtrn-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease
}

.xtrn-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.xtrn-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: rgba(255, 107, 107, .15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, .3)
}

.xtrn-badge--blue {
    background: rgba(0, 196, 255, .15);
    color: #00c4ff;
    border-color: rgba(0, 196, 255, .3)
}

.xtrn-badge--gold {
    background: rgba(245, 200, 66, .15);
    color: var(--c-gold);
    border-color: rgba(245, 200, 66, .3)
}

.xtrn-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px
}

.xtrn-desc {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 20px
}

.xtrn-timer-row, .xtrn-prize-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: .9rem
}

.xtrn-timer-label, .xtrn-prize-label {
    color: var(--c-text-muted)
}

.xtrn-timer {
    color: var(--c-gold);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    font-family: 'Roboto', monospace
}

.xtrn-prize {
    color: var(--c-accent);
    font-weight: 700;
    font-size: 1.05rem
}

.xtrn-join {
    width: 100%;
    margin-top: 16px;
    justify-content: center
}

.xslot-section {
    background: linear-gradient(180deg, var(--c-card) 0%, var(--c-bg) 100%)
}

.xslot-machine {
    max-width: 480px;
    margin: 0 auto;
    text-align: center
}

.xslot-reels {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px
}

.xslot-reel {
    width: 110px;
    height: 110px;
    background: rgba(0, 0, 0, .4);
    border: 2px solid var(--c-border);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 4px 16px rgba(0, 0, 0, .4)
}

.xslot-reel-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform .05s linear
}

.xslot-reel.spinning .xslot-reel-inner {
    animation: xreelSpin .08s linear infinite
}

@keyframes xreelSpin {
    0% {
        transform: translateY(-50%)
    }
    100% {
        transform: translateY(50%)
    }
}

.xslot-sym {
    font-size: 3rem;
    line-height: 1
}

.xslot-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
    margin: 0 0 20px;
    border-radius: 2px;
    opacity: .6
}

.xslot-result {
    height: 24px;
    font-size: .9rem;
    color: var(--c-text-muted);
    margin-bottom: 16px
}

.xslot-spin-btn {
    padding: 15px 48px;
    font-size: 1.1rem;
    margin-bottom: 24px;
    animation: xglow 3s ease-in-out infinite
}

@keyframes xglow {
    0%, 100% {
        box-shadow: 0 0 16px rgba(179, 10, 215, .5)
    }
    50% {
        box-shadow: 0 0 32px rgba(179, 10, 215, .9)
    }
}

.xslot-win-panel, .xslot-lose-panel {
    display: none;
    padding: 24px;
    background: rgba(0, 0, 0, .3);
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
    margin-top: 8px
}

.xslot-win-panel {
    border-color: rgba(0, 232, 123, .3)
}

.xslot-win-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00e87b;
    margin-bottom: 8px
}

.xslot-win-bonus {
    font-size: 1rem;
    color: var(--c-text-muted);
    margin-bottom: 20px
}

.xslot-get-btn {
    display: inline-flex
}

.xslot-lose-text {
    font-size: 1rem;
    color: var(--c-text-muted);
    margin-bottom: 16px
}

.xcnt-section {
    background: var(--c-card)
}

.xcnt-author-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(0, 0, 0, .25);
    border-radius: var(--r-md);
    margin-bottom: 32px;
    border: 1px solid var(--c-border);
    flex-wrap: wrap;
    gap: 16px
}

.xcnt-author-info {
    display: flex;
    align-items: center;
    gap: 14px
}

.xcnt-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-btn-green), var(--c-btn-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0
}

.xcnt-author-name {
    font-weight: 700;
    color: #fff;
    font-size: .95rem
}

.xcnt-author-role {
    font-size: .8rem;
    color: var(--c-text-muted)
}

.xcnt-author-link {
    color: var(--c-accent);
    font-size: .875rem;
    font-weight: 600;
    white-space: nowrap
}

.xcnt-content-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--c-text);
    min-height: 80px
}

.xcnt-content-body h1, .xcnt-content-body h2, .xcnt-content-body h3, .xcnt-content-body h4, .xcnt-content-body h5, .xcnt-content-body h6 {
    color: #fff;
    margin: 28px 0 12px;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.3
}

.xcnt-content-body h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 8px
}

.xcnt-content-body h3 {
    font-size: 1.2rem
}

.xcnt-content-body p {
    margin-bottom: 16px
}

.xcnt-content-body ul, .xcnt-content-body ol {
    margin: 0 0 16px 24px
}

.xcnt-content-body li {
    margin-bottom: 6px;
    color: var(--c-text)
}

.xcnt-content-body a {
    color: var(--c-accent);
    text-decoration: underline
}

.xcnt-content-body strong, .xcnt-content-body b {
    color: #fff;
    font-weight: 700
}

.xcnt-content-body em, .xcnt-content-body i {
    color: var(--c-text-muted);
    font-style: italic
}

.xcnt-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block
}

.xcnt-content-body th, .xcnt-content-body td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--c-border)
}

.xcnt-content-body th {
    background: var(--c-card2);
    color: #fff;
    font-weight: 600
}

.xcnt-content-body td {
    color: var(--c-text)
}

.xcnt-content-body tr:nth-child(even) td {
    background: rgba(0, 0, 0, .15)
}

.xcnt-content-body blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 12px 20px;
    background: rgba(0, 229, 176, .06);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    margin: 20px 0;
    color: var(--c-text-muted);
    font-style: italic
}

.xcnt-content-body img {
    border-radius: var(--r-sm);
    margin: 16px 0
}

.xfaq-section {
}

.xfaq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.xfaq-item {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color .25s
}

.xfaq-item:hover {
    border-color: rgba(0, 229, 176, .25)
}

.xfaq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    line-height: 1.4
}

.xfaq-q:hover {
    color: var(--c-accent)
}

.xfaq-arrow {
    color: var(--c-text-muted);
    font-size: .75rem;
    transition: transform .3s ease;
    flex-shrink: 0
}

.xfaq-q.open .xfaq-arrow {
    transform: rotate(180deg)
}

.xfaq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease
}

.xfaq-a.open {
    max-height: 600px
}

.xfaq-a div {
    padding: 0 24px 20px;
    color: var(--c-text-muted);
    font-size: .95rem;
    line-height: 1.7
}

.xfaq-a strong {
    color: #fff
}

.xftr-outer {
    background: var(--c-hdr);
    border-top: 1px solid var(--c-border);
    padding: 56px 0 32px
}

.xftr-top {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px
}

.xftr-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 14px
}

.xftr-desc {
    font-size: .875rem;
    color: var(--c-text-muted);
    line-height: 1.7
}

.xftr-nav-title {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px
}

.xftr-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.xftr-nav a {
    color: var(--c-text-muted);
    font-size: .875rem;
    transition: var(--trans)
}

.xftr-nav a:hover {
    color: #fff
}

.xftr-payments, .xftr-providers {
    margin-bottom: 28px
}

.xftr-pay-title {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px
}

.xftr-pay-logos, .xftr-prov-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.xftr-pay-logo, .xftr-prov-logo {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 600
}

.xftr-legal {
    border-top: 1px solid var(--c-border);
    padding-top: 24px
}

.xftr-copyright {
    color: var(--c-text-muted);
    font-size: .875rem;
    margin-bottom: 10px
}

.xftr-disclaimer {
    font-size: .78rem;
    color: rgba(154, 184, 178, .55);
    line-height: 1.6;
    margin-bottom: 6px
}

.xftr-geo {
    font-size: .78rem;
    color: rgba(154, 184, 178, .4)
}

.xwgt-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, var(--c-hdr), #0a4a40);
    border-top: 1px solid rgba(179, 10, 215, .5);
    padding: 12px 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .5);
    transform: translateY(0);
    transition: transform .35s ease
}

.xwgt-widget.hidden {
    transform: translateY(110%)
}

.xwgt-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap
}

.xwgt-text {
    color: #fff;
    font-size: .95rem;
    font-weight: 500
}

.xwgt-text strong {
    color: var(--c-gold)
}

.xwgt-btn {
    background: var(--c-btn-purple);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    padding: 10px 32px;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: var(--trans);
    display: inline-block;
    white-space: nowrap
}

.xwgt-btn:hover {
    background: #c50ef0;
    transform: translateY(-1px)
}

.xwgt-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .4);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--trans);
    margin-left: 8px
}

.xwgt-close:hover {
    color: #fff
}

.xb3d1-wrapper {
    padding-bottom: 0
}

.x3q8r-hidden {
    display: none !important
}

.x5a2w-unused {
    color: transparent;
    position: absolute;
    pointer-events: none;
    visibility: hidden
}

.xk9m1-placeholder {
    height: 0;
    overflow: hidden
}

@keyframes xfadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.xanimated {
    animation: xfadeInUp .5s ease both
}

@media (max-width: 1024px) {
    .xadv-grid {
        grid-template-columns:repeat(2, 1fr)
    }

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

    .xhdr-nav {
        display: none
    }

    .xhdr-container {
        grid-template-columns:auto 1fr auto auto
    }
}

@media (max-width: 768px) {
    .x-section-wrap {
        padding: 44px 0
    }

    .xhdr-container {
        grid-template-columns:auto 1fr auto auto;
        gap: 12px
    }

    .xhdr-nav-wrap {
        display: none
    }

    .xhdr-online {
        display: none
    }

    .xhdr-burger {
        display: flex
    }

    .xhdr-actions {
        gap: 8px
    }

    .xhdr-login, .xhdr-signup {
        padding: 7px 14px;
        font-size: .8rem
    }

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

    .xa1f5-cta-wrap {
        flex-direction: column;
        gap: 10px
    }

    .xe8b2-code-row {
        grid-template-columns:1fr
    }

    .xe8b2-code-actions {
        flex-direction: row
    }

    .xe8b2-bonus-info {
        grid-template-columns:repeat(3, 1fr);
        gap: 10px
    }

    .xe8b2-bonus-val {
        font-size: 1.1rem
    }

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

    .xscr-slide img {
        height: 260px
    }

    .xtrn-track {
        grid-template-columns:1fr;
        gap: 16px
    }

    .xslot-reels {
        gap: 8px
    }

    .xslot-reel {
        width: 90px;
        height: 90px
    }

    .xslot-sym {
        font-size: 2.4rem
    }

    .xcnt-author-bar {
        flex-direction: column;
        align-items: flex-start
    }

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

    .xwgt-inner {
        justify-content: space-between
    }
}

@media (max-width: 480px) {
    .xadv-grid {
        grid-template-columns:1fr
    }

    .xe8b2-bonus-info {
        grid-template-columns:1fr
    }

    .xslot-reel {
        width: 80px;
        height: 80px
    }

    .xslot-sym {
        font-size: 2rem
    }

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

    .xwgt-text {
        font-size: .82rem
    }

    .xwgt-btn {
        padding: 9px 22px;
        font-size: .85rem
    }

    .xa1f5-h1 {
        font-size: 1.6rem
    }
}

.hopdx {
    background: #062d29;
    border: 1px solid #0d4a3e;
    border-radius: 18px;
    padding: 32px;
    margin: 30px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
    color: #e8f0ee;
    overflow: hidden;
}

.hopdx h1,
.hopdx h2,
.hopdx h3,
.hopdx h4 {
    color: #fff;
    line-height: 1.3;
    margin: 0 0 18px;
    word-break: break-word;
}

.hopdx h1 {
    font-size: 2rem;
}

.hopdx h2 {
    font-size: 1.55rem;
    margin-top: 32px;
    padding-bottom: 10px;
    border-bottom: 1px solid #0d4a3e;
}

.hopdx p {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.8;
    color: #d7e7e3;
    overflow-wrap: break-word;
}

.hopdx ul,
.hopdx ol {
    margin: 0 0 18px 22px;
}

.hopdx li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.hopdx a {
    color: #00e5b0;
    text-decoration: underline;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hopdx img,
.hopdx iframe,
.hopdx table {
    max-width: 100%;
}

.hopdx table {
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
}

.hopdx blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 4px solid #00e5b0;
    background: rgba(255, 255, 255, .04);
    border-radius: 0 12px 12px 0;
}

.hopdx strong {
    color: #fff;
}

.hopdx code,
.hopdx pre {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

@media (max-width: 768px) {
    .hopdx {
        padding: 22px 16px;
        border-radius: 14px;
        margin: 20px 0;
    }

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

    .hopdx h2 {
        font-size: 1.3rem;
        margin-top: 24px;
    }

    .hopdx h3 {
        font-size: 1.1rem;
    }

    .hopdx p,
    .hopdx li {
        font-size: .95rem;
        line-height: 1.75;
    }

    .hopdx table {
        font-size: .85rem;
    }
}

@media (max-width: 480px) {
    .hopdx {
        padding: 18px 14px;
    }

    .hopdx h1 {
        font-size: 1.35rem;
    }

    .hopdx h2 {
        font-size: 1.15rem;
    }

    .hopdx p,
    .hopdx li {
        font-size: .9rem;
    }

    .hopdx a {
        word-break: break-all;
    }
}

@media (max-width: 768px) {
    #xtrn-section {
        padding: 42px 0;
        overflow: hidden;
    }

    #xtrn-section .x-section-title {
        font-size: 1.45rem;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    #xtrn-section .x-section-sub {
        font-size: .92rem;
        line-height: 1.55;
        margin-bottom: 22px;
        padding: 0 10px;
    }

    .xtrn-slider {
        overflow: visible;
    }

    .xtrn-track {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        transform: none !important;
    }

    .xtrn-card {
        width: 100%;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .xtrn-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .xtrn-desc {
        font-size: .86rem;
        line-height: 1.6;
    }

    .xtrn-timer-row,
    .xtrn-prize-row {
        align-items: flex-start;
        gap: 6px;
        flex-direction: column;
        padding: 10px 12px;
        background: rgba(255, 255, 255, .04);
        border-radius: 10px;
    }

    .xtrn-timer,
    .xtrn-prize {
        font-size: 1rem;
        word-break: break-word;
    }

    .xtrn-join {
        width: 100%;
        min-height: 46px;
        margin-top: 14px;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    #xtrn-section {
        padding: 34px 0;
    }

    .xtrn-card {
        padding: 18px 14px;
    }

    .xtrn-title {
        font-size: 1rem;
    }

    .xtrn-desc {
        font-size: .82rem;
    }
}