/* Sol Casino - Main Stylesheet v1.7 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@300;400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
    --col-bg: #121724;
    --col-header: #191F2D;
    --col-btn-dark: #191F2D;
    --col-btn-green: #1AE5A1;
    --col-btn-green-hover: #15c98d;
    --col-text: #e8ecf3;
    --col-text-muted: #8a95aa;
    --col-border: #252d3f;
    --col-card: #1a2235;
    --col-card2: #1e2840;
    --col-accent: #1AE5A1;
    --col-accent2: #0ec98a;
    --col-gold: #f5c842;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.38);
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
    --font-main: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--col-bg);
    color: var(--col-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--col-btn-green-hover);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    outline: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
    color: var(--col-text);
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
    color: var(--col-text);
}

/* ---- Layout ---- */
.x7k2-wrapper {
    width: 100%;
}

.x7k2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.x7k2-section {
    padding: 64px 0;
}

.x7k2-section-sm {
    padding: 40px 0;
}

/* ---- WP-style hidden elements (unikalizatsiya) ---- */
.wp-block-group {
    display: block;
}

.wp-content-area {
    position: relative;
}

.elementor-widget-wrap {
    display: contents;
}

.entry-content {
    display: block;
}

.site-main {
    display: block;
}

.post-thumbnail {
    display: none;
}

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

.wp-pagenavi {
    display: none;
}

/* ---- Unused unikalizatsiya classes ---- */
.b9x3-phantom {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.z4r1-ghost {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.q8w2-void {
    height: 0;
    overflow: hidden;
}

.m3v6-dummy {
    width: 0;
}

/* ---- Buttons ---- */
.btn-sol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-sol-dark {
    background: var(--col-btn-dark);
    color: var(--col-text);
    border: 1px solid #2a3350;
}

.btn-sol-dark:hover {
    background: #232d42;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.btn-sol-green {
    background: var(--col-btn-green);
    color: #0a1220;
    border: none;
    font-weight: 700;
}

.btn-sol-green:hover {
    background: var(--col-btn-green-hover);
    color: #0a1220;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 229, 161, 0.35);
}

.btn-sol-green:active {
    transform: translateY(0);
}

#x9a1-header {
    background: var(--col-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid #252d3f;
}

.x9a1-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 14px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.x9a1-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.x9a1-nav a {
    color: #c5cedf;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.x9a1-nav a:hover {
    background: rgba(26, 229, 161, 0.1);
    color: var(--col-accent);
}

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

.x9a1-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--col-text-muted);
    margin-right: 4px;
}

.x9a1-online-dot {
    width: 8px;
    height: 8px;
    background: var(--col-accent);
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(26, 229, 161, 0.6);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(26, 229, 161, 0);
    }
}

.x9a1-online-count {
    color: var(--col-accent);
    font-weight: 700;
}

/* Burger */
.x9a1-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.x9a1-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--col-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* Mobile nav */
.x9a1-mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--col-header);
    border-top: 1px solid var(--col-border);
    padding: 12px 16px 16px;
    gap: 6px;
}

.x9a1-mobile-nav.is-open {
    display: flex;
}

.x9a1-mobile-nav a {
    color: #c5cedf;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.x9a1-mobile-nav a:hover {
    background: rgba(26, 229, 161, 0.1);
    color: var(--col-accent);
}

#x3b5-hero {
    position: relative;
    overflow: hidden;
    background: var(--col-btn-dark);
}

.x3b5-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(.4, 0, .2, 1);
    height: 520px;
}

.x3b5-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.x3b5-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.55);
}

.x3b5-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 23, 36, 0.82) 0%, rgba(18, 23, 36, 0.2) 100%);
    z-index: 1;
}

.x3b5-slide-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 0 48px;
}

.x3b5-slide-badge {
    display: inline-block;
    background: var(--col-accent);
    color: #0a1220;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.x3b5-slide-title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
}

.x3b5-slide-title span {
    color: var(--col-accent);
}

.x3b5-slide-sub {
    font-size: 1rem;
    color: #c5cedf;
    margin-bottom: 28px;
    line-height: 1.5;
}

.x3b5-nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.x3b5-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
}

.x3b5-dot.active {
    background: var(--col-accent);
    transform: scale(1.3);
}

.x3b5-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background var(--transition);
}

.x3b5-arrow:hover {
    background: rgba(26, 229, 161, 0.3);
}

.x3b5-arrow-prev {
    left: 16px;
}

.x3b5-arrow-next {
    right: 16px;
}

/* ---- Section Titles ---- */
.x7k2-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.x7k2-section-title h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--col-text);
    margin-bottom: 10px;
}

.x7k2-section-title p {
    color: var(--col-text-muted);
    font-size: 0.95rem;
}

.x7k2-underline {
    width: 48px;
    height: 3px;
    background: var(--col-accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ---- Info Table ---- */
.x4c7-info-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.x4c7-info-table {
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
    background: var(--col-card);
    font-size: 0.9rem;
}

.x4c7-info-table th,
.x4c7-info-table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid var(--col-border);
}

.x4c7-info-table th {
    background: var(--col-card2);
    color: var(--col-accent);
    font-weight: 700;
    width: 38%;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.x4c7-info-table td {
    color: var(--col-text);
}

.x4c7-info-table tr:last-child th,
.x4c7-info-table tr:last-child td {
    border-bottom: none;
}

.x4c7-info-table tr:hover td {
    background: rgba(26, 229, 161, 0.04);
}

.x4c7-info-table .x4c7-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(26, 229, 161, 0.13);
    color: var(--col-accent);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ---- Winners ---- */
#x5e8-winners {
    background: linear-gradient(180deg, var(--col-bg) 0%, #141b2b 100%);
}

.x5e8-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.x5e8-winner-card {
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.x5e8-winner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 229, 161, 0.12);
    border-color: rgba(26, 229, 161, 0.3);
}

.x5e8-winner-rank {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.x5e8-rank-1 {
    background: var(--col-gold);
    color: #0a1220;
}

.x5e8-rank-2 {
    background: #c0c8d8;
    color: #0a1220;
}

.x5e8-rank-3 {
    background: #cd7f32;
    color: #fff;
}

.x5e8-rank-other {
    background: var(--col-card2);
    color: var(--col-text-muted);
    border: 1px solid var(--col-border);
}

.x5e8-winner-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1AE5A1 0%, #0a8060 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0a1220;
    flex-shrink: 0;
}

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

.x5e8-winner-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--col-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.x5e8-winner-amount {
    font-size: 0.82rem;
    color: var(--col-accent);
    font-weight: 700;
}

.x5e8-winner-game {
    font-size: 0.72rem;
    color: var(--col-text-muted);
}

/* ---- App Block ---- */
#x6f9-app {
    background: var(--col-card);
    border-radius: var(--radius-lg);
    margin: 0 16px;
}

.x6f9-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px;
}

.x6f9-app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.x6f9-app-table th,
.x6f9-app-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--col-border);
}

.x6f9-app-table th {
    color: var(--col-text-muted);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: 40%;
}

.x6f9-app-table td {
    color: var(--col-text);
    font-weight: 500;
}

.x6f9-app-table tr:last-child th,
.x6f9-app-table tr:last-child td {
    border-bottom: none;
}

.x6f9-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.x6f9-dl-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--col-card2);
    border: 1px solid var(--col-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    text-decoration: none;
    color: var(--col-text);
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.x6f9-dl-btn:hover {
    border-color: var(--col-accent);
    background: rgba(26, 229, 161, 0.07);
    color: var(--col-text);
    transform: translateX(3px);
}

.x6f9-dl-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.x6f9-dl-icon svg {
    width: 28px;
    height: 28px;
}

.x6f9-dl-info {
    display: flex;
    flex-direction: column;
}

.x6f9-dl-label {
    font-size: 0.7rem;
    color: var(--col-text-muted);
}

.x6f9-dl-name {
    font-size: 0.95rem;
    font-weight: 700;
}

.x6f9-app-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.x6f9-app-img-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    max-height: 400px;
    width: auto;
}

/* ---- Slot Game ---- */
#xa2d3-slot {
    background: linear-gradient(180deg, #141b2b 0%, var(--col-bg) 100%);
}

.xa2d3-slot-wrapper {
    max-width: 520px;
    margin: 0 auto;
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
}

.xa2d3-slot-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--col-text);
    margin-bottom: 6px;
}

.xa2d3-slot-sub {
    font-size: 0.85rem;
    color: var(--col-text-muted);
    margin-bottom: 24px;
}

.xa2d3-reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.xa2d3-reel {
    width: 90px;
    height: 110px;
    background: var(--col-bg);
    border: 2px solid var(--col-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    overflow: hidden;
    position: relative;
    transition: border-color var(--transition);
}

.xa2d3-reel.spinning {
    border-color: var(--col-accent);
    animation: reel-shake 0.1s infinite;
}

@keyframes reel-shake {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.xa2d3-reel-inner {
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xa2d3-balance {
    font-size: 0.88rem;
    color: var(--col-text-muted);
    margin-bottom: 6px;
}

.xa2d3-balance span {
    color: var(--col-accent);
    font-weight: 700;
    font-size: 1rem;
}

.xa2d3-bet-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.xa2d3-bet-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--col-card2);
    color: var(--col-text);
    border: 1px solid var(--col-border);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}

.xa2d3-bet-btn:hover {
    background: rgba(26, 229, 161, 0.15);
}

.xa2d3-bet-val {
    font-weight: 700;
    color: var(--col-text);
    min-width: 60px;
    text-align: center;
}

.xa2d3-spin-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #1AE5A1 0%, #0ec98a 100%);
    color: #0a1220;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
    letter-spacing: 0.04em;
}

.xa2d3-spin-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 229, 161, 0.4);
}

.xa2d3-spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.xa2d3-result {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-md);
    display: none;
    animation: fadeInUp 0.4s ease;
}

.xa2d3-result.win {
    display: block;
    background: linear-gradient(135deg, rgba(26, 229, 161, 0.15) 0%, rgba(26, 229, 161, 0.05) 100%);
    border: 1px solid rgba(26, 229, 161, 0.3);
}

.xa2d3-result.lose {
    display: block;
    background: rgba(255, 80, 80, 0.07);
    border: 1px solid rgba(255, 80, 80, 0.2);
}

.xa2d3-result-text {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
}

.xa2d3-result.win .xa2d3-result-text {
    color: var(--col-accent);
}

.xa2d3-result.lose .xa2d3-result-text {
    color: #ff6b6b;
}

/* ---- Reviews ---- */
#xb1c4-reviews {
    background: var(--col-bg);
}

.xb1c4-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.xb1c4-review-card {
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.xb1c4-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(26, 229, 161, 0.2);
}

.xb1c4-review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.xb1c4-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--col-border);
    flex-shrink: 0;
}

.xb1c4-reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--col-text);
    margin-bottom: 3px;
}

.xb1c4-review-date {
    font-size: 0.75rem;
    color: var(--col-text-muted);
}

.xb1c4-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.xb1c4-stars svg {
    width: 16px;
    height: 16px;
}

.xb1c4-review-text {
    font-size: 0.88rem;
    color: #c5cedf;
    line-height: 1.65;
}

/* Review form */
.xb1c4-review-form {
    max-width: 580px;
    margin: 0 auto;
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.xb1c4-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--col-text);
}

.xb1c4-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.xb1c4-form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--col-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.xb1c4-form-group input,
.xb1c4-form-group textarea {
    background: var(--col-bg);
    border: 1px solid var(--col-border);
    border-radius: var(--radius-sm);
    color: var(--col-text);
    font-family: var(--font-main);
    font-size: 0.9rem;
    padding: 12px 14px;
    transition: border-color var(--transition);
    width: 100%;
    resize: vertical;
}

.xb1c4-form-group input:focus,
.xb1c4-form-group textarea:focus {
    border-color: var(--col-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 229, 161, 0.1);
}

.xb1c4-form-group textarea {
    min-height: 100px;
}

.xb1c4-form-success {
    display: none;
    background: rgba(26, 229, 161, 0.12);
    border: 1px solid rgba(26, 229, 161, 0.3);
    color: var(--col-accent);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
    animation: fadeInUp 0.4s ease;
}

/* ---- Author Block ---- */
.xa8f2-author {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-bottom: 32px;
}

.xa8f2-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--col-accent);
    flex-shrink: 0;
}

.xa8f2-author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--col-text);
    margin-bottom: 2px;
}

.xa8f2-author-bio {
    font-size: 0.82rem;
    color: var(--col-text-muted);
    line-height: 1.5;
    margin: 0;
}

.xa8f2-author-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--col-accent);
    margin-top: 4px;
}

.xa8f2-author-link:hover {
    color: var(--col-btn-green-hover);
}

/* ---- Content Block ---- */
.x9b3-content-wrap {
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius-md);
    padding: 32px 36px;
    margin-bottom: 32px;
}

/* Styling for bare HTML content from CMS */
.x9b3-content-wrap h1,
.x9b3-content-wrap h2,
.x9b3-content-wrap h3,
.x9b3-content-wrap h4,
.x9b3-content-wrap h5,
.x9b3-content-wrap h6 {
    color: var(--col-text);
    margin-top: 1.5em;
    margin-bottom: 0.6em;
    line-height: 1.3;
}

.x9b3-content-wrap h2 {
    font-size: 1.4rem;
    border-left: 3px solid var(--col-accent);
    padding-left: 12px;
}

.x9b3-content-wrap h3 {
    font-size: 1.15rem;
    color: var(--col-accent);
}

.x9b3-content-wrap p {
    color: #c5cedf;
    line-height: 1.75;
    margin-bottom: 1em;
}

.x9b3-content-wrap a {
    color: var(--col-accent);
    text-decoration: underline;
}

.x9b3-content-wrap ul, .x9b3-content-wrap ol {
    padding-left: 22px;
    margin-bottom: 1em;
}

.x9b3-content-wrap ul {
    list-style: disc;
}

.x9b3-content-wrap ol {
    list-style: decimal;
}

.x9b3-content-wrap li {
    color: #c5cedf;
    line-height: 1.7;
    margin-bottom: 4px;
}

.x9b3-content-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 0.9rem;
}

.x9b3-content-wrap table th,
.x9b3-content-wrap table td {
    border: 1px solid var(--col-border);
    padding: 10px 14px;
    text-align: left;
}

.x9b3-content-wrap table th {
    background: var(--col-card2);
    color: var(--col-accent);
    font-weight: 700;
}

.x9b3-content-wrap table tr:hover td {
    background: rgba(26, 229, 161, 0.04);
}

.x9b3-content-wrap blockquote {
    border-left: 3px solid var(--col-accent);
    background: rgba(26, 229, 161, 0.07);
    padding: 12px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5em 0;
    font-style: italic;
    color: #c5cedf;
}

.x9b3-content-wrap strong {
    color: var(--col-text);
    font-weight: 700;
}

.x9b3-content-wrap em {
    color: #aab5c8;
}

.x9b3-content-wrap img {
    border-radius: var(--radius-sm);
    margin: 1em 0;
    max-width: 100%;
}

.x9b3-content-wrap hr {
    border: none;
    border-top: 1px solid var(--col-border);
    margin: 2em 0;
}

/* ---- FAQ ---- */
#xd5c6-faq {
    background: linear-gradient(180deg, #141b2b 0%, var(--col-bg) 100%);
}

.xd5c6-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.xd5c6-faq-item {
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.xd5c6-faq-item:hover {
    border-color: rgba(26, 229, 161, 0.3);
}

.xd5c6-faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--col-text);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: color var(--transition);
}

.xd5c6-faq-q:hover {
    color: var(--col-accent);
}

.xd5c6-faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
    color: var(--col-accent);
}

.xd5c6-faq-item.is-open .xd5c6-faq-icon {
    transform: rotate(45deg);
}

.xd5c6-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(.4, 0, .2, 1), padding var(--transition);
    padding: 0 20px;
}

.xd5c6-faq-item.is-open .xd5c6-faq-a {
    max-height: 400px;
    padding: 0 20px 18px;
}

.xd5c6-faq-a p {
    color: #b0bdd4;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ---- Footer ---- */
#xe3a7-footer {
    background: var(--col-header);
    border-top: 1px solid var(--col-border);
    padding: 40px 0 20px;
    margin-top: 0;
}

.xe3a7-footer-grid {
    display: grid;
    grid-template-columns: 240px 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--col-border);
    margin-bottom: 28px;
}

.xe3a7-footer-logo img {
    height: 42px;
    margin-bottom: 14px;
}

.xe3a7-footer-desc {
    font-size: 0.83rem;
    color: var(--col-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.xe3a7-footer-links h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--col-text-muted);
    margin-bottom: 14px;
}

.xe3a7-footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xe3a7-footer-links a {
    font-size: 0.87rem;
    color: #8a95aa;
    text-decoration: none;
    transition: color var(--transition);
}

.xe3a7-footer-links a:hover {
    color: var(--col-accent);
}

.xe3a7-payment-logos,
.xe3a7-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.xe3a7-logo-badge {
    background: var(--col-card);
    border: 1px solid var(--col-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--col-text-muted);
    transition: border-color var(--transition), color var(--transition);
}

.xe3a7-logo-badge:hover {
    border-color: rgba(26, 229, 161, 0.4);
    color: var(--col-accent);
}

.xe3a7-footer-bottom {
    text-align: center;
    font-size: 0.78rem;
    color: #545f74;
    line-height: 1.8;
}

.xe3a7-footer-bottom a {
    color: #6b7890;
}

.xe3a7-footer-bottom a:hover {
    color: var(--col-text-muted);
}

.xe3a7-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid #545f74;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    color: #545f74;
    margin-right: 8px;
    vertical-align: middle;
}

/* ---- Sticky Widget ---- */
#xf4b8-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    background: linear-gradient(90deg, #0c1522 0%, var(--col-header) 100%);
    border-top: 1px solid rgba(26, 229, 161, 0.3);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.xf4b8-widget-text {
    font-size: 0.88rem;
    color: var(--col-text);
    flex: 1;
    min-width: 0;
}

.xf4b8-widget-text strong {
    color: var(--col-accent);
}

.xf4b8-widget-close {
    background: none;
    border: none;
    color: var(--col-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
    flex-shrink: 0;
}

.xf4b8-widget-close:hover {
    color: var(--col-text);
}

.xf4b8-widget-btn {
    display: inline-block;
    background: var(--col-btn-green);
    color: #0a1220 !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    animation: widget-pulse 2.5s infinite;
}

@keyframes widget-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(26, 229, 161, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(26, 229, 161, 0);
    }
}

.xf4b8-widget-btn:hover {
    background: var(--col-btn-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(26, 229, 161, 0.4);
}

body {
    padding-bottom: 72px;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.x7k2-animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.x7k2-animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.x7k2-animate-delay-1 {
    transition-delay: 0.1s;
}

.x7k2-animate-delay-2 {
    transition-delay: 0.2s;
}

.x7k2-animate-delay-3 {
    transition-delay: 0.3s;
}

.x7k2-animate-delay-4 {
    transition-delay: 0.4s;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .xe3a7-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .x6f9-app-grid {
        grid-template-columns: 1fr;
    }

    .x6f9-app-img-wrap {
        display: none;
    }
}

@media (max-width: 768px) {
    .x9a1-nav {
        display: none;
    }

    .x9a1-burger {
        display: flex;
    }

    .x9a1-header-inner {
        grid-template-columns: auto 1fr auto auto;
    }

    .x3b5-slides {
        height: 380px;
    }

    .x3b5-slide-content {
        padding: 0 20px;
    }

    .x3b5-slide-title {
        font-size: 1.4rem;
    }

    .xa2d3-reels {
        gap: 6px;
    }

    .xa2d3-reel {
        width: 72px;
        height: 90px;
        font-size: 2.2rem;
    }

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

    .x6f9-app-grid {
        padding: 24px 16px;
    }

    #x6f9-app {
        margin: 0 8px;
    }

    .xb1c4-review-form {
        padding: 22px 16px;
    }

    .x9b3-content-wrap {
        padding: 22px 16px;
    }

    .x7k2-section {
        padding: 40px 0;
    }

    .xf4b8-widget-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .x3b5-slides {
        height: 320px;
    }

    .x5e8-winners-grid {
        grid-template-columns: 1fr 1fr;
    }

    .xa2d3-reel {
        width: 60px;
        height: 78px;
        font-size: 1.9rem;
    }
}

/* ---- Bootstrap override / supplement ---- */
.container {
    max-width: 1200px;
}

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

.bg-site {
    background: var(--col-bg) !important;
}

/* ---- Extra unused classes for uniqueness ---- */
.wp-site-blocks {
    display: block;
}

.is-layout-flow {
    display: block;
}

.wp-block-post-content {
    display: block;
}

.entry-header {
    display: block;
}

.wp-block-cover {
    display: block;
}

.x3j9-unused-margin {
    margin-top: 0;
}

.q2w5-ext-padding {
    padding: 0;
}

.b7n1-col-span {
    display: block;
}

.f4m8-grid-item {
    display: block;
}

.y6p3-flex-row {
    display: block;
}

.v1k5-text-node {
    display: block;
}

.h8a2-outline-none {
    outline: none;
}

.s5d3-overflow {
    overflow: visible;
}

@media (max-width: 768px) {
    #x5e8-winners {
        padding: 28px 0;
    }

    .x5e8-winners-grid {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding: 0 6px 6px;
        scroll-snap-type: x mandatory;
    }

    .x5e8-winners-grid::-webkit-scrollbar {
        display: none;
    }

    .x5e8-winner-card {
        flex: 0 0 82%;
        min-width: 82%;
        border-radius: 14px;
        padding: 12px;
        scroll-snap-align: start;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
    }

    .x5e8-winner-rank {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .x5e8-winner-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .x5e8-winner-name {
        font-size: 13px;
    }

    .x5e8-winner-amount {
        font-size: 13px;
    }

    .x5e8-winner-game {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .x5e8-winner-card {
        flex: 0 0 88%;
        min-width: 88%;
        padding: 10px;
    }

    .x5e8-winner-name {
        font-size: 12px;
    }

    .x5e8-winner-amount {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    #x9a1-header {
        backdrop-filter: blur(10px);
        background: rgba(25, 31, 45, 0.95);
    }

    .x9a1-header-inner {
        padding: 10px 12px;
        gap: 10px;
        grid-template-columns:auto 1fr auto;
    }

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

    .x9a1-nav {
        display: none;
    }

    .x9a1-header-actions {
        gap: 6px;
    }

    .x9a1-header-actions .btn-sol {
        padding: 8px 12px;
        font-size: 12px;
    }

    .x9a1-header-actions .btn-sol-dark {
        display: none;
    }

    .x9a1-burger {
        display: flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        background: var(--col-card);
        border: 1px solid var(--col-border);
        border-radius: 10px;
    }

    .x9a1-burger span {
        width: 18px;
        height: 2px;
    }

    .x9a1-mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #191F2D 0%, #121724 100%);
        border-top: 1px solid var(--col-border);
        padding: 14px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all .25s ease;
        z-index: 999;
    }

    .x9a1-mobile-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .x9a1-mobile-nav a {
        padding: 12px;
        border-radius: 10px;
        background: var(--col-card);
        border: 1px solid var(--col-border);
        font-size: 14px;
        font-weight: 600;
        text-align: center;
    }

    .x9a1-mobile-nav a:active {
        background: rgba(26, 229, 161, 0.15);
    }
}

@media (max-width: 480px) {
    .x9a1-header-actions .btn-sol-green {
        padding: 7px 10px;
        font-size: 11px;
    }

    .x9a1-burger {
        width: 34px;
        height: 34px;
    }
}
