/* ============================================================
   PIN-UP CASINO AFFILIATE — MAIN STYLESHEET
   Font: PT Sans (preloaded via Google Fonts in HTML)
   Framework: Bootstrap 5 (CDN, not duplicated here)
   ============================================================ */

/* ============================================================
   1. ROOT VARIABLES
   ============================================================ */
:root {
    --color-accent: #00fbc8;
    --color-cta: #ff2e09;
    --color-bg: #323234;
    --color-header: #000000;
    --color-text: #f0f0f0;
    --color-text-muted: #aaa;
    --color-border: #444;
    --border-radius: 8px;
    --header-height: 70px;
    --transition-speed: 0.25s;
}

/* ============================================================
   2. GLOBAL / RESET
   ============================================================ */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    font-family: 'PT Sans', Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-accent);
}

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

p {
    margin-top: 0;
}

ul,
ol {
    margin-top: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00d4aa;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) #1a1a1a;
}

/* ============================================================
   3. HEADER
   ============================================================ */
#xh9k2m {
    background-color: var(--color-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 20px rgba(0, 251, 200, 0.15);
    width: 100%;
}

/* ============================================================
   4. LOGO
   ============================================================ */
.xj4r8p {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.xj4r8p img {
    height: 48px;
    width: auto;
    transition: filter var(--transition-speed) ease;
}

.xj4r8p:hover img {
    filter: brightness(1.1);
}

.xj4r8p span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.5px;
}

/* ============================================================
   5. NAV LINKS
   ============================================================ */
.xn2v5q {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.xn2v5q a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color var(--transition-speed) ease;
    white-space: nowrap;
}

.xn2v5q a:hover,
.xn2v5q a.active {
    color: var(--color-accent);
}

/* Header action area */
.xhdr-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ============================================================
   6. BUTTONS — BASE
   ============================================================ */
.xbtn {
    border-radius: 6px;
    padding: 8px 18px;
    font-family: 'PT Sans', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
}

.xbtn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* ============================================================
   7. BUTTON — LOGIN
   ============================================================ */
.xbtn-login {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.xbtn-login:hover {
    background: var(--color-accent);
    color: #000;
}

/* ============================================================
   8. BUTTON — REGISTER
   ============================================================ */
.xbtn-register {
    background: var(--color-cta);
    color: #fff;
    border: 2px solid var(--color-cta);
}

.xbtn-register:hover {
    background: #cc2500;
    border-color: #cc2500;
    color: #fff;
    transform: scale(1.04);
}

/* ============================================================
   9. ONLINE COUNT
   ============================================================ */
.xol7r3 {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 251, 200, 0.08);
    border: 1px solid rgba(0, 251, 200, 0.2);
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
}

.xol7r3::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #00e676;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

/* ============================================================
   10. BURGER MENU
   ============================================================ */
.xbg5n1 {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1100;
    flex-shrink: 0;
}

.xbg5n1 span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.xbg5n1.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.xbg5n1.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.xbg5n1.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================
   11. MOBILE MENU
   ============================================================ */
.xmn4v6 {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #111;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.xmn4v6.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.xmn4v6 ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.xmn4v6 ul li a {
    display: block;
    padding: 14px 24px;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color var(--transition-speed) ease, background var(--transition-speed) ease;
}

.xmn4v6 ul li a:hover {
    color: var(--color-accent);
    background: rgba(0, 251, 200, 0.05);
}

.xmn4v6 .xmn4v6-cta {
    padding: 16px 24px 20px;
    display: flex;
    gap: 10px;
}

.xmn4v6 .xmn4v6-cta .xbtn {
    flex: 1;
    text-align: center;
    justify-content: center;
}

/* ============================================================
   12. HERO SECTION
   ============================================================ */
#xhs1p4 {
    position: relative;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#xhs1p4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.xhero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 40px 20px;
}

#xhs1p4 h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    margin-bottom: 16px;
    line-height: 1.2;
}

#xhs1p4 p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   13. HERO CTA BUTTON
   ============================================================ */
.xhero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-cta);
    color: #fff;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    animation: pulse-btn 2s ease-in-out infinite;
    transition: filter var(--transition-speed) ease, transform var(--transition-speed) ease;
    box-shadow: 0 4px 24px rgba(255, 46, 9, 0.4);
}

.xhero-cta:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
    animation-play-state: paused;
    color: #fff;
}

/* Hero badge */
.xhero-badge {
    display: inline-block;
    background: rgba(0, 251, 200, 0.12);
    border: 1px solid rgba(0, 251, 200, 0.35);
    color: var(--color-accent);
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* ============================================================
   14. CONTENT WRAPPER
   ============================================================ */
.xcw3p2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ============================================================
   15. SECTION TITLES
   ============================================================ */
.xst7k1 {
    color: var(--color-accent);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
    line-height: 1.3;
}

.xst7k1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--color-cta);
    border-radius: 2px;
}

.xst7k1.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================================
   16. CASINO INFO TABLE
   ============================================================ */
.xtbl4m8-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
}

.xtbl4m8 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
    min-width: 320px;
}

.xtbl4m8 thead tr {
    background: #000;
}

.xtbl4m8 thead th {
    color: var(--color-accent);
    padding: 14px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    white-space: nowrap;
}

.xtbl4m8 thead th:first-child {
    border-radius: 6px 0 0 6px;
}

.xtbl4m8 thead th:last-child {
    border-radius: 0 6px 6px 0;
}

.xtbl4m8 tbody tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.3);
}

.xtbl4m8 tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04);
}

.xtbl4m8 tbody tr:hover {
    background: rgba(0, 251, 200, 0.05);
}

.xtbl4m8 tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.95rem;
    vertical-align: middle;
}

.xtbl4m8 tbody td:first-child {
    color: var(--color-text-muted);
    width: 40%;
    font-weight: 600;
}

.xtbl4m8 tbody td:first-child::before {
    content: '';
}

/* ============================================================
   17. WINNERS BLOCK
   ============================================================ */
.xwn6p2 {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--color-border);
    margin-bottom: 32px;
}

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

/* ============================================================
   18. WINNER ROW
   ============================================================ */
.xwr3m5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 12px;
}

.xwr3m5:last-child {
    border-bottom: none;
}

.xwr3m5-rank {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 28px;
    text-align: center;
}

.xwr3m5-nick {
    color: var(--color-text);
    font-size: 0.95rem;
    flex: 1;
    padding: 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xwr3m5-game {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    flex: 1;
    padding: 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xwr3m5-amount {
    color: var(--color-cta);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* ============================================================
   19. WINNER RANK TOP 3 COLORS
   ============================================================ */
.xwr3m5:nth-child(1) .xwr3m5-rank {
    color: #ffd700;
}

.xwr3m5:nth-child(2) .xwr3m5-rank {
    color: #c0c0c0;
}

.xwr3m5:nth-child(3) .xwr3m5-rank {
    color: #cd7f32;
}

.xwr3m5-rank.rank-1 {
    color: #ffd700;
}

.xwr3m5-rank.rank-2 {
    color: #c0c0c0;
}

.xwr3m5-rank.rank-3 {
    color: #cd7f32;
}

/* ============================================================
   20. APP BLOCK
   ============================================================ */
.xap5n8 {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #333;
    margin-bottom: 32px;
}

.xap5n8-inner {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.xap5n8-image {
    flex-shrink: 0;
}

.xap5n8-image img {
    width: 160px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.xap5n8-info {
    flex: 1;
    min-width: 0;
}

/* ============================================================
   21. APP INFO TABLE
   ============================================================ */
.xapt6m3-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.xapt6m3 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
    min-width: 280px;
}

.xapt6m3 thead tr {
    background: #000;
}

.xapt6m3 thead th {
    color: var(--color-accent);
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.xapt6m3 thead th:first-child {
    border-radius: 6px 0 0 6px;
}

.xapt6m3 thead th:last-child {
    border-radius: 0 6px 6px 0;
}

.xapt6m3 tbody tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.3);
}

.xapt6m3 tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04);
}

.xapt6m3 tbody tr:hover {
    background: rgba(0, 251, 200, 0.05);
}

.xapt6m3 tbody td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.9rem;
    vertical-align: middle;
}

.xapt6m3 tbody td:first-child {
    color: var(--color-text-muted);
    width: 40%;
    font-weight: 600;
}

/* ============================================================
   22. DOWNLOAD BUTTONS
   ============================================================ */
.xdl2r7 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.xdl2r7 a,
.xdl2r7 button {
    background: #1a1a1a;
    border: 1px solid var(--color-accent);
    color: var(--color-text);
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    font-family: 'PT Sans', Arial, sans-serif;
}

.xdl2r7 a:hover,
.xdl2r7 button:hover {
    background: var(--color-accent);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 251, 200, 0.3);
}

.xdl2r7 a svg,
.xdl2r7 a img,
.xdl2r7 button svg,
.xdl2r7 button img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

/* ============================================================
   23. SLOTS GRID
   ============================================================ */
.xsg4n1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ============================================================
   24. SLOT CARD
   ============================================================ */
.xsc7m3 {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.xsc7m3:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 251, 200, 0.2);
    border-color: rgba(0, 251, 200, 0.3);
}

/* ============================================================
   25. SLOT CARD IMAGE
   ============================================================ */
.xsc7m3 img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.xsc7m3:hover img {
    transform: scale(1.04);
}

/* ============================================================
   26. SLOT CARD BODY
   ============================================================ */
.xsc7m3-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ============================================================
   27. SLOT CARD TITLE
   ============================================================ */
.xsc7m3-title {
    color: var(--color-text);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
    line-height: 1.3;
}

.xsc7m3-provider {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.xsc7m3-rtp {
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-bottom: 4px;
}

/* ============================================================
   28. SLOT CARD BUTTON
   ============================================================ */
.xsc7m3-btn {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: 6px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    width: 100%;
    margin-top: auto;
    font-family: 'PT Sans', Arial, sans-serif;
    text-align: center;
    text-decoration: none;
    display: block;
}

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

/* ============================================================
   29. MOBILE SLIDER FOR SLOTS
   ============================================================ */
@media (max-width: 767px) {
    .xsg4n1.xsg4n1-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 12px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .xsg4n1.xsg4n1-slider::-webkit-scrollbar {
        display: none;
    }

    .xsg4n1.xsg4n1-slider .xsc7m3 {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }
}

/* ============================================================
   30. MINI SLOT GAME
   ============================================================ */
#xmg3k5 {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #333;
    margin-bottom: 32px;
}

#xmg3k5 h2 {
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

#xmg3k5 p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.xmg3k5-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* ============================================================
   31. SLOT REELS
   ============================================================ */
.xrl8m2 {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.xrl8m2-reel {
    width: 90px;
    height: 90px;
    background: #0d0d0d;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 2.5rem;
    line-height: 90px;
    text-align: center;
    overflow: hidden;
    transition: border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.xrl8m2-reel.spinning {
    border-color: var(--color-accent);
    box-shadow: 0 0 12px rgba(0, 251, 200, 0.3);
}

.xrl8m2-reel span {
    display: block;
    transition: transform 0.1s linear;
}

.xrl8m2-reel.spinning span {
    animation: spinReel 0.5s linear infinite;
}

.xrl8m2-reel.win {
    border-color: #ffd700;
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.4);
}

/* ============================================================
   32. REEL SPINNING ANIMATION
   ============================================================ */
@keyframes spinReel {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-900%);
    }
}

/* ============================================================
   33. WIN MESSAGE
   ============================================================ */
.xwm5p3 {
    background: linear-gradient(135deg, rgba(0, 251, 200, 0.1), rgba(255, 46, 9, 0.1));
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
    color: var(--color-accent);
    font-size: 1.2rem;
    font-weight: 700;
    display: none;
    text-align: center;
}

/* ============================================================
   34. WIN MESSAGE — ACTIVE
   ============================================================ */
.xwm5p3.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.xwm5p3 span {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-top: 4px;
}

/* Spin button */
.xmg3k5-spin-btn {
    background: var(--color-cta);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-family: 'PT Sans', Arial, sans-serif;
    box-shadow: 0 4px 16px rgba(255, 46, 9, 0.35);
}

.xmg3k5-spin-btn:hover {
    background: #cc2500;
    transform: scale(1.04);
}

.xmg3k5-spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   35. FAQ
   ============================================================ */
.xfq2n7 {
    margin-bottom: 32px;
}

/* ============================================================
   36. FAQ ITEM
   ============================================================ */
.xfi5k3 {
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.xfi5k3:first-child {
    border-top: 1px solid var(--color-border);
}

/* ============================================================
   37. FAQ QUESTION
   ============================================================ */
.xfq9m1 {
    padding: 18px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'PT Sans', Arial, sans-serif;
    transition: color var(--transition-speed) ease;
    line-height: 1.4;
}

.xfq9m1:hover {
    color: var(--color-accent);
}

/* ============================================================
   38. FAQ QUESTION — ACTIVE
   ============================================================ */
.xfq9m1.active {
    color: var(--color-accent);
}

/* ============================================================
   39. FAQ ARROW
   ============================================================ */
.xfq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--color-text-muted);
}

.xfq-arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.xfq9m1.active .xfq-arrow {
    transform: rotate(180deg);
    color: var(--color-accent);
}

/* ============================================================
   40. FAQ ANSWER
   ============================================================ */
.xfa3p8 {
    padding: 0 0 16px 0;
    color: #bbb;
    line-height: 1.7;
    font-size: 0.95rem;
    display: none;
}

.xfa3p8.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.xfa3p8 a {
    color: var(--color-accent);
    text-decoration: underline;
}

.xfa3p8 strong {
    color: var(--color-text);
}

/* ============================================================
   41. FOOTER
   ============================================================ */
#xft9r2 {
    background: #000;
    padding: 48px 20px 24px;
    color: var(--color-text-muted);
    margin-top: auto;
}

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

.xft9r2-col h4 {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* ============================================================
   42. FOOTER LOGO
   ============================================================ */
.xft9r2-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.xft9r2-logo img {
    height: 40px;
    width: auto;
}

.xft9r2-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
}

.xft9r2-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

/* ============================================================
   43. FOOTER NAV LINKS
   ============================================================ */
.xft9r2-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xft9r2-nav li a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed) ease;
}

.xft9r2-nav li a:hover {
    color: var(--color-accent);
}

/* ============================================================
   44. PAYMENT ICONS
   ============================================================ */
.xpi4m7 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.xpi4m7 img {
    height: 28px;
    width: auto;
    filter: grayscale(40%) brightness(0.85);
    transition: filter var(--transition-speed) ease, transform var(--transition-speed) ease;
    cursor: pointer;
}

.xpi4m7 img:hover {
    filter: grayscale(0) brightness(1);
    transform: translateY(-2px);
}

/* ============================================================
   45. PROVIDER ICONS
   ============================================================ */
.xpv6n3 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.xpv6n3 img {
    height: 28px;
    width: auto;
    filter: grayscale(40%) brightness(0.8);
    transition: filter var(--transition-speed) ease, transform var(--transition-speed) ease;
    cursor: pointer;
}

.xpv6n3 img:hover {
    filter: grayscale(0) brightness(1);
    transform: translateY(-2px);
}

/* ============================================================
   46. COPYRIGHT
   ============================================================ */
.xft9r2-copyright {
    font-size: 0.8rem;
    color: #666;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #222;
    text-align: center;
    line-height: 1.6;
}

.xft9r2-copyright a {
    color: #555;
    text-decoration: underline;
}

.xft9r2-copyright a:hover {
    color: var(--color-text-muted);
}

/* ============================================================
   47. BOTTOM WIDGET
   ============================================================ */
#xbw2k9 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #000, #1a1a1a);
    border-top: 2px solid var(--color-accent);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -4px 24px rgba(0, 251, 200, 0.15);
}

#xbw2k9.xbw-show {
    transform: translateY(0);
}

.xbw2k9-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.xbw2k9-title {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   48. WIDGET CLOSE BUTTON
   ============================================================ */
.xbw2k9-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xbw2k9-close:hover {
    color: #fff;
}

.xbw2k9-close svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
}

/* ============================================================
   49. WIDGET BONUS TEXT
   ============================================================ */
.xbw2k9-bonus {
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.xbw2k9-sub {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* ============================================================
   50. WIDGET CTA
   ============================================================ */
.xbw2k9-cta {
    background: var(--color-cta);
    color: #fff;
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform var(--transition-speed) ease, background var(--transition-speed) ease;
    white-space: nowrap;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    font-family: 'PT Sans', Arial, sans-serif;
}

.xbw2k9-cta:hover {
    transform: scale(1.04);
    background: #cc2500;
    color: #fff;
}

/* ============================================================
   51. CONTENT BLOCK FOR REVIEW
   ============================================================ */
.xcr7p5 h2,
.xcr7p5 h3,
.xcr7p5 h4 {
    color: var(--color-accent);
    margin: 24px 0 12px;
    line-height: 1.3;
    font-weight: 700;
}

.xcr7p5 h2 {
    font-size: 1.6rem;
}

.xcr7p5 h3 {
    font-size: 1.3rem;
}

.xcr7p5 h4 {
    font-size: 1.1rem;
}

.xcr7p5 p {
    line-height: 1.8;
    margin-bottom: 16px;
    color: #ddd;
    font-size: 0.97rem;
}

.xcr7p5 ul,
.xcr7p5 ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.xcr7p5 li {
    margin-bottom: 8px;
    color: #ddd;
    line-height: 1.6;
}

.xcr7p5 table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block;
}

.xcr7p5 table th {
    background: #000;
    color: var(--color-accent);
    padding: 12px;
    text-align: left;
    border: 1px solid #333;
    font-size: 0.9rem;
    white-space: nowrap;
}

.xcr7p5 table td {
    padding: 10px 12px;
    border: 1px solid #333;
    color: #ddd;
    font-size: 0.9rem;
}

.xcr7p5 table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04);
}

.xcr7p5 table tr:hover {
    background: rgba(0, 251, 200, 0.04);
}

.xcr7p5 a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-speed) ease;
}

.xcr7p5 a:hover {
    text-decoration: underline;
}

.xcr7p5 strong,
.xcr7p5 b {
    color: var(--color-text);
}

.xcr7p5 blockquote {
    border-left: 3px solid var(--color-accent);
    padding-left: 16px;
    color: var(--color-text-muted);
    font-style: italic;
    margin: 16px 0;
}

.xcr7p5 img {
    border-radius: var(--border-radius);
    margin: 16px 0;
}

.xcr7p5 code {
    background: rgba(0, 251, 200, 0.1);
    color: var(--color-accent);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.9em;
}

.xcr7p5 pre {
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: var(--border-radius);
    padding: 16px;
    overflow-x: auto;
    margin-bottom: 16px;
}

.xcr7p5 hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 24px 0;
}

/* ============================================================
   52. ANIMATIONS
   ============================================================ */
@keyframes pulse-btn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes spinReel {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-900%);
    }
}

@keyframes pulse-dot {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(0, 251, 200, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 251, 200, 0.7);
    }
}

/* ============================================================
   53. FAKE / UNIQUALIZATION CLASSES (unused decoy selectors)
   ============================================================ */
.wp-block-cover {
    position: relative;
    background-size: cover;
    min-height: 430px;
}

.wp-block-cover__inner-container {
    position: relative;
    z-index: 1;
}

.elementor-widget {
    margin-bottom: 20px;
}

.elementor-widget-container {
    transition: background 0.3s;
}

.et_pb_section {
    padding: 54px 0;
}

.et_pb_row {
    width: 80%;
    max-width: 1280px;
    margin: 0 auto;
}

.et_pb_column {
    float: left;
}

.woocommerce-page .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce-info {
    border-top-color: #a00;
}

.yoast-seo-meta {
    display: none;
}

.yoast-seo-meta-description {
    visibility: hidden;
}

.wp-post-image {
    max-width: 100%;
    height: auto;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1em;
}

.wp-caption-text {
    font-size: 0.85em;
}

.alignleft {
    float: left;
    margin-right: 16px;
}

.alignright {
    float: right;
    margin-left: 16px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.entry-meta {
    font-size: 0.85rem;
}

.entry-footer {
    margin-top: 32px;
    padding-top: 16px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
}

.navigation.post-navigation {
    margin: 32px 0;
}

.site-footer .widget_text {
    font-size: 0.9rem;
}

/* ============================================================
   54. UTILITY CLASSES
   ============================================================ */
.text-accent {
    color: var(--color-accent) !important;
}

.text-cta {
    color: var(--color-cta) !important;
}

.mt-section {
    margin-top: 60px;
}

.mb-section {
    margin-bottom: 60px;
}

.text-muted-custom {
    color: var(--color-text-muted);
}

.bg-dark-card {
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
}

.section-padding {
    padding: 60px 0;
}

.divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 32px 0;
}

.badge-accent {
    background: rgba(0, 251, 200, 0.12);
    color: var(--color-accent);
    border: 1px solid rgba(0, 251, 200, 0.3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.78rem;
    font-weight: 700;
}

.badge-cta {
    background: rgba(255, 46, 9, 0.15);
    color: var(--color-cta);
    border: 1px solid rgba(255, 46, 9, 0.3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.78rem;
    font-weight: 700;
}

.glow-accent {
    box-shadow: 0 0 16px rgba(0, 251, 200, 0.35);
}

.glow-cta {
    box-shadow: 0 0 16px rgba(255, 46, 9, 0.35);
}

/* ============================================================
   BONUS / PROMO SECTION
   ============================================================ */
.xbn7r4 {
    background: linear-gradient(135deg, rgba(0, 251, 200, 0.06), rgba(255, 46, 9, 0.06));
    border: 1px solid rgba(0, 251, 200, 0.2);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.xbn7r4::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 251, 200, 0.08), transparent 70%);
    pointer-events: none;
}

.xbn7r4-tag {
    display: inline-block;
    background: var(--color-cta);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.xbn7r4-amount {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.1;
    margin-bottom: 6px;
}

.xbn7r4-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.xbn7r4-terms {
    font-size: 0.75rem;
    color: #555;
    margin-top: 12px;
}

/* ============================================================
   RATING STARS
   ============================================================ */
.xrat5m2 {
    display: inline-flex;
    gap: 2px;
    align-items: center;
}

.xrat5m2-star {
    color: #ffd700;
    font-size: 1rem;
    line-height: 1;
}

.xrat5m2-star.empty {
    color: #444;
}

.xrat5m2-score {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-left: 6px;
}

/* ============================================================
   INFO CARD
   ============================================================ */
.xinf3k9 {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.xinf3k9:hover {
    border-color: rgba(0, 251, 200, 0.25);
    transform: translateY(-3px);
}

.xinf3k9-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 251, 200, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.xinf3k9-title {
    color: var(--color-text);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.xinf3k9-text {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ============================================================
   STEPS / HOW TO PLAY
   ============================================================ */
.xstp4n1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.xstp4n1-item {
    text-align: center;
    position: relative;
}

.xstp4n1-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 22px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--color-border);
}

.xstp4n1-num {
    width: 44px;
    height: 44px;
    background: rgba(0, 251, 200, 0.1);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 auto 12px;
}

.xstp4n1-title {
    font-weight: 700;
    color: var(--color-text);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.xstp4n1-desc {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ============================================================
   LOADER / SKELETON
   ============================================================ */
.xsk7l2 {
    background: linear-gradient(90deg, #1a1a1a 25%, #242424 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--border-radius);
}

.xsk7l2-text {
    height: 14px;
    margin-bottom: 8px;
}

.xsk7l2-title {
    height: 22px;
    width: 60%;
    margin-bottom: 16px;
}

.xsk7l2-img {
    aspect-ratio: 16 / 9;
    width: 100%;
    margin-bottom: 12px;
}

.xts8m3-container {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    right: 16px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.xts8m3 {
    background: #1a1a1a;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    color: var(--color-text);
    font-size: 0.88rem;
    max-width: 300px;
    pointer-events: all;
    animation: slideUp 0.3s ease forwards;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.xts8m3.success {
    border-left: 3px solid var(--color-accent);
}

.xts8m3.error {
    border-left: 3px solid var(--color-cta);
}

@media (max-width: 991px) {
    /* Hide desktop nav */
    .xn2v5q {
        display: none;
    }

    /* Show burger */
    .xbg5n1 {
        display: flex;
    }

    /* Slots grid: 2 columns */
    .xsg4n1 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer grid */
    .xft9r2-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /* Steps */
    .xstp4n1 {
        grid-template-columns: repeat(2, 1fr);
    }

    .xstp4n1-item::after {
        display: none;
    }

    /* App block */
    .xap5n8-inner {
        flex-direction: column;
        gap: 20px;
    }

    .xap5n8-image img {
        width: 120px;
    }
}

/* ---- Mobile / ≤ 767px ---- */
@media (max-width: 767px) {
    /* Hero */
    #xhs1p4 h1 {
        font-size: 1.8rem;
    }

    #xhs1p4 p {
        font-size: 0.97rem;
    }

    #xhs1p4 {
        min-height: 420px;
    }

    /* Slots: 1 col, horizontal scroll */
    .xsg4n1 {
        grid-template-columns: 1fr;
    }

    /* Section titles */
    .xst7k1 {
        font-size: 1.35rem;
    }

    /* Content wrapper */
    .xcw3p2 {
        padding: 28px 14px;
    }

    /* Bonus block */
    .xbn7r4 {
        padding: 20px;
    }

    .xbn7r4-amount {
        font-size: 1.8rem;
    }

    /* Mini slot game */
    #xmg3k5 {
        padding: 24px 16px;
    }

    /* Reels */
    .xrl8m2-reel {
        width: 72px;
        height: 72px;
        font-size: 2rem;
        line-height: 72px;
    }

    /* App block */
    .xap5n8 {
        padding: 20px;
    }

    /* Footer */
    .xft9r2-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Widget */
    #xbw2k9 {
        flex-wrap: nowrap;
        padding: 12px 14px 12px 12px;
        gap: 10px;
    }

    .xbw2k9-bonus {
        font-size: 0.9rem;
    }

    .xbw2k9-cta {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    /* Steps */
    .xstp4n1 {
        grid-template-columns: 1fr;
    }

    /* Download buttons */
    .xdl2r7 {
        gap: 8px;
    }

    .xdl2r7 a,
    .xdl2r7 button {
        padding: 9px 14px;
        font-size: 0.85rem;
    }
}

/* ---- Small mobile / ≤ 480px ---- */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    #xhs1p4 h1 {
        font-size: 1.5rem;
    }

    .xhero-cta {
        padding: 13px 26px;
        font-size: 1.05rem;
    }

    .xst7k1 {
        font-size: 1.2rem;
    }

    .xcw3p2 {
        padding: 20px 12px;
    }

    .xbtn {
        padding: 7px 14px;
        font-size: 0.85rem;
    }

    .xwn6p2 {
        padding: 16px;
    }

    .xrl8m2-reel {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
        line-height: 60px;
    }

    .xrl8m2 {
        gap: 6px;
    }

    .xbn7r4-amount {
        font-size: 1.5rem;
    }

    .mt-section {
        margin-top: 40px;
    }

    .mb-section {
        margin-bottom: 40px;
    }

    .xft9r2-copyright {
        font-size: 0.72rem;
    }

    .xinf3k9 {
        padding: 18px;
    }
}

@media print {
    #xh9k2m,
    #xbw2k9,
    .xbg5n1,
    .xmn4v6 {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}

.fgsrw {
    max-width: 980px;
    margin: 48px auto;
    padding: 40px;
    background: linear-gradient(180deg, rgba(28, 28, 30, 0.98) 0%, rgba(43, 43, 45, 0.98) 100%);
    border: 1px solid rgba(0, 251, 200, 0.12);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
    color: #f0f0f0;
}

.fgsrw h1 {
    margin: 0 0 24px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.fgsrw h2 {
    margin: 34px 0 18px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #00fbc8;
}

.fgsrw h3 {
    margin: 26px 0 14px;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
}

.fgsrw p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #e7e7e7;
}

.fgsrw ul,
.fgsrw ol {
    margin: 0 0 22px;
    padding-left: 24px;
    color: #e7e7e7;
}

.fgsrw li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
}

.fgsrw a {
    color: #00fbc8;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease, opacity 0.25s ease;
    word-break: break-word;
}

.fgsrw a:hover {
    color: #ffffff;
    opacity: 0.95;
}

.fgsrw strong,
.fgsrw b {
    color: #ffffff;
    font-weight: 700;
}

.fgsrw table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
}

.fgsrw th {
    padding: 16px 18px;
    text-align: left;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
    color: #00fbc8;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fgsrw td {
    padding: 16px 18px;
    font-size: 15px;
    line-height: 1.65;
    color: #e7e7e7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    vertical-align: top;
}

.fgsrw tr:last-child td {
    border-bottom: none;
}

.fgsrw tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.fgsrw blockquote {
    margin: 28px 0;
    padding: 22px 22px 22px 18px;
    background: rgba(0, 251, 200, 0.05);
    border-left: 4px solid #00fbc8;
    border-radius: 14px;
}

.fgsrw blockquote p {
    margin: 0;
    color: #f1f1f1;
}

.fgsrw img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.fgsrw hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
    .fgsrw {
        margin: 36px auto;
        padding: 32px 24px;
        border-radius: 18px;
    }

    .fgsrw h1 {
        font-size: 34px;
    }

    .fgsrw h2 {
        font-size: 27px;
    }

    .fgsrw h3 {
        font-size: 21px;
    }

    .fgsrw p,
    .fgsrw li {
        font-size: 16px;
    }

    .fgsrw th,
    .fgsrw td {
        padding: 14px;
    }
}

@media (max-width: 767px) {
    .fgsrw {
        margin: 28px auto;
        padding: 24px 18px;
        border-radius: 16px;
    }

    .fgsrw h1 {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .fgsrw h2 {
        margin: 28px 0 14px;
        font-size: 23px;
    }

    .fgsrw h3 {
        margin: 22px 0 12px;
        font-size: 19px;
    }

    .fgsrw p,
    .fgsrw li {
        font-size: 15px;
        line-height: 1.75;
    }

    .fgsrw ul,
    .fgsrw ol {
        padding-left: 20px;
    }

    .fgsrw table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 12px;
    }

    .fgsrw th,
    .fgsrw td {
        min-width: 180px;
        padding: 12px;
        font-size: 14px;
    }

    .fgsrw blockquote {
        padding: 18px 16px 18px 14px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .fgsrw {
        margin: 20px auto;
        padding: 20px 14px;
    }

    .fgsrw h1 {
        font-size: 24px;
    }

    .fgsrw h2 {
        font-size: 20px;
    }

    .fgsrw h3 {
        font-size: 18px;
    }

    .fgsrw p,
    .fgsrw li,
    .fgsrw th,
    .fgsrw td {
        font-size: 14px;
    }
}

#xh9k2m {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000000;
    border-bottom: 1px solid rgba(0, 251, 200, 0.14);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.32);
}

.xhdr-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.xhdr-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.xj4r8p {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.xj4r8p img {
    display: block;
    width: auto;
    height: 48px;
    max-width: 100%;
}

.xn2v5q {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.xn2v5q .xnl {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background 0.25s ease, color 0.25s ease;
}

.xn2v5q .xnl:hover {
    background: rgba(0, 251, 200, 0.08);
    color: #00fbc8;
}

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

.xol7r3 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 251, 200, 0.08);
    border: 1px solid rgba(0, 251, 200, 0.18);
    color: #00fbc8;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.xol-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00fbc8;
    box-shadow: 0 0 10px rgba(0, 251, 200, 0.55);
    animation: xolPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes xolPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.45;
        transform: scale(1.25);
    }
}

.xbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.xbtn-login {
    background: transparent;
    color: #00fbc8;
    border: 2px solid #00fbc8;
}

.xbtn-login:hover {
    background: #00fbc8;
    color: #000000;
    box-shadow: 0 8px 20px rgba(0, 251, 200, 0.2);
    transform: translateY(-1px);
}

.xbtn-register {
    background: #ff2e09;
    color: #ffffff;
    border: 2px solid #ff2e09;
}

.xbtn-register:hover {
    background: #e62907;
    border-color: #e62907;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 46, 9, 0.22);
    transform: translateY(-1px);
}

.xbg5n1 {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.xbg5n1 span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.xbg5n1.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.xbg5n1.active span:nth-child(2) {
    opacity: 0;
}

.xbg5n1.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.xmn4v6 {
    display: none;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 20px 18px;
}

.xmn4v6.active {
    display: block;
}

.xmn4v6 .xmnl {
    display: block;
    padding: 14px 0;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s ease;
}

.xmn4v6 .xmnl:last-child {
    border-bottom: 0;
}

.xmn4v6 .xmnl:hover {
    color: #00fbc8;
}

@media (max-width: 991px) {
    .xhdr-inner {
        padding: 10px 16px;
        gap: 12px;
    }

    .xn2v5q {
        display: none;
    }

    .xol7r3 {
        display: none;
    }

    .xbg5n1 {
        display: flex;
        margin-left: auto;
    }

    .xj4r8p img {
        height: 42px;
    }

    .xmn4v6 {
        padding: 8px 16px 16px;
    }
}

@media (max-width: 575px) {
    .xhdr-inner {
        padding: 8px 12px;
    }

    .xj4r8p img {
        height: 36px;
    }

    .xbg5n1 {
        width: 38px;
        height: 38px;
        padding: 8px 7px;
    }

    .xbg5n1.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .xbg5n1.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .xmn4v6 {
        padding: 6px 12px 14px;
    }

    .xmn4v6 .xmnl {
        font-size: 14px;
        padding: 12px 0;
    }
}

#xmg3k5 {
    padding: 52px 40px;
    border-radius: 20px;
    max-width: 760px;
    margin: 0 auto;
}

#xmg3k5 .xst7k1 {
    font-size: 32px;
    margin-bottom: 14px;
}

#xmg3k5 .xmg-sub {
    font-size: 18px;
    margin-bottom: 28px;
}

#xmg3k5 .xrl8m2 {
    gap: 14px;
    margin-bottom: 28px;
}

#xmg3k5 .xreel {
    width: 110px;
    height: 110px;
    font-size: 52px;
    border-radius: 14px;
}

#xmg3k5 .xspin-btn {
    min-height: 52px;
    padding: 14px 32px;
    font-size: 18px;
    border-radius: 10px;
}

#xmg3k5 .xwm5p3 {
    margin-top: 28px;
    padding: 26px 22px;
    border-radius: 14px;
}

#xmg3k5 .xwm-icon {
    font-size: 34px;
    margin-bottom: 10px;
}

#xmg3k5 .xwm-text {
    font-size: 20px;
    margin-bottom: 8px;
}

#xmg3k5 .xwm-bonus {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--color-accent);
}

#xmg3k5 .xwm-sub {
    font-size: 15px;
    margin: 8px 0 16px;
}

#xmg3k5 .xwm-cta {
    min-height: 48px;
    padding: 12px 26px;
    font-size: 16px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    #xmg3k5 {
        padding: 34px 18px;
        max-width: 100%;
        border-radius: 16px;
    }

    #xmg3k5 .xst7k1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    #xmg3k5 .xmg-sub {
        font-size: 15px;
        margin-bottom: 20px;
    }

    #xmg3k5 .xrl8m2 {
        gap: 10px;
        margin-bottom: 20px;
    }

    #xmg3k5 .xreel {
        width: 82px;
        height: 82px;
        font-size: 38px;
        border-radius: 12px;
    }

    #xmg3k5 .xspin-btn {
        width: 100%;
        max-width: 260px;
        min-height: 46px;
        padding: 12px 18px;
        font-size: 15px;
    }

    #xmg3k5 .xwm5p3 {
        margin-top: 20px;
        padding: 20px 14px;
        border-radius: 12px;
    }

    #xmg3k5 .xwm-icon {
        font-size: 28px;
    }

    #xmg3k5 .xwm-text {
        font-size: 17px;
    }

    #xmg3k5 .xwm-bonus {
        font-size: 22px;
    }

    #xmg3k5 .xwm-sub {
        font-size: 14px;
    }

    #xmg3k5 .xwm-cta {
        width: 100%;
        max-width: 240px;
        min-height: 44px;
        font-size: 14px;
        padding: 11px 16px;
    }
}

@media (max-width: 480px) {
    #xmg3k5 {
        padding: 28px 14px;
    }

    #xmg3k5 .xst7k1 {
        font-size: 21px;
    }

    #xmg3k5 .xmg-sub {
        font-size: 14px;
    }

    #xmg3k5 .xreel {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }

    #xmg3k5 .xspin-btn {
        max-width: 220px;
        font-size: 14px;
    }

    #xmg3k5 .xwm-text {
        font-size: 15px;
    }

    #xmg3k5 .xwm-bonus {
        font-size: 20px;
    }
}