/* Sultan Casino - style.css?ver=2.1 */
/* Build: 20240424 */

:root {
    --clr-bg: #0e2f2b;
    --clr-header: #222723;
    --clr-btn-login: #02504b;
    --clr-btn-reg: #f9c719;
    --clr-text: #e8f0ee;
    --clr-text-muted: #8da89f;
    --clr-accent: #f9c719;
    --clr-card: #152e29;
    --clr-card2: #1a3832;
    --clr-border: #2a4a44;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: .28s ease;
    --font-main: 'Montserrat', 'Inter', 'Roboto', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--clr-bg);
    color: var(--clr-text);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a:hover {
    text-decoration: underline;
}

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

/* ==============================
   TYPOGRAPHY
============================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.6rem);
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
}

p {
    margin-bottom: .9rem;
}

/* ==============================
   UNUSED/OBFUSCATION HELPERS
============================== */
.wp-block-group, .wp-block-columns, .entry-content,
.elementor-widget-container, .site-content,
.wp-site-blocks, .has-global-padding {
    display: contents;
}

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

.wpcf7-response-output {
    display: none;
}

.post-thumbnail, .wp-caption {
    max-width: 100%;
}

/* unused utility stubs */
.s7k2-hidden {
    display: none;
}

.xr94-placeholder {
    opacity: 0;
    pointer-events: none;
}

.q3lm-dummy {
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ==============================
   HEADER
============================== */
#xh-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.hd-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.hd-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.hd-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-accent);
    letter-spacing: .5px;
    text-transform: uppercase;
}

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

.hd-nav a {
    color: #c8dbd8;
    font-size: .82rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.hd-nav a:hover {
    color: var(--clr-accent);
    background: rgba(249, 199, 25, .08);
}

.hd-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hd-online {
    font-size: .72rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 4px;
}

.hd-online-dot {
    width: 7px;
    height: 7px;
    background: #3ddc84;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.6s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(61, 220, 132, .5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(61, 220, 132, 0);
    }
}

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

.hd-burger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

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

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

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

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

.hd-mobile-nav.open {
    display: flex;
}

.hd-mobile-nav a {
    color: #c8dbd8;
    font-size: .9rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    text-decoration: none;
}

.hd-mobile-nav a:hover {
    background: rgba(255, 255, 255, .05);
    color: var(--clr-accent);
}

.hd-mobile-nav-divider {
    height: 1px;
    background: var(--clr-border);
    margin: 8px 0;
}

/* ==============================
   BUTTONS
============================== */
.btn-login {
    background: var(--clr-btn-login);
    color: #fff !important;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.btn-login:hover {
    background: #036b64;
    box-shadow: 0 4px 12px rgba(2, 80, 75, .4);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.btn-reg {
    background: var(--clr-btn-reg);
    color: #1a1a1a !important;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.btn-reg:hover {
    background: #ffd83a;
    box-shadow: 0 4px 14px rgba(249, 199, 25, .45);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.btn-primary {
    background: var(--clr-btn-login);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 13px 28px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary:hover {
    background: #036b64;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 80, 75, .5);
    color: #fff;
    text-decoration: none;
}

.btn-yellow {
    background: var(--clr-btn-reg);
    color: #1a1a1a;
    border: none;
    border-radius: var(--radius-md);
    padding: 13px 28px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-yellow:hover {
    background: #ffd83a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 199, 25, .45);
    color: #1a1a1a;
    text-decoration: none;
}

/* ==============================
   HERO SLIDER
============================== */
#xh-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-slides {
    display: flex;
    width: 100%;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

.hero-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(14, 47, 43, .93) 40%, rgba(14, 47, 43, .5) 100%);
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 40px 24px;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(249, 199, 25, .15);
    border: 1px solid rgba(249, 199, 25, .35);
    color: var(--clr-accent);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.hero-slide-inner h1 {
    font-size: clamp(1.6rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.hero-slide-inner p {
    font-size: 1.05rem;
    color: #c8dbd8;
    margin-bottom: 26px;
}

.hero-slide-inner .hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

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

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

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

.hero-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background var(--transition);
}

.hero-arr:hover {
    background: rgba(249, 199, 25, .25);
}

.hero-arr-prev {
    left: 16px;
}

.hero-arr-next {
    right: 16px;
}

/* ==============================
   SECTION WRAPPER
============================== */
.xh-section {
    padding: 64px 0;
}

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

.xh-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.xh-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.xh-section-title h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.xh-section-title p {
    color: var(--clr-text-muted);
    font-size: .95rem;
    max-width: 560px;
    margin: 0 auto;
}

.xh-divider {
    width: 52px;
    height: 3px;
    background: var(--clr-accent);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* ==============================
   ADVANTAGES
============================== */
#xh-advantages {
    background: linear-gradient(180deg, #0c2924 0%, var(--clr-bg) 100%);
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 18px;
}

.adv-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .4);
    border-color: rgba(249, 199, 25, .3);
}

.adv-icon {
    width: 48px;
    height: 48px;
    background: rgba(2, 80, 75, .3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.adv-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.adv-card p {
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin: 0;
}

/* ==============================
   MIRRORS TABLE
============================== */
#xh-mirrors {
    background: var(--clr-bg);
}

.mirrors-header-meta {
    text-align: center;
    margin-bottom: 20px;
    font-size: .85rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mirrors-live-badge {
    background: #3ddc84;
    color: #0a1f1c;
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.mirrors-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
}

.mirrors-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 580px;
    background: var(--clr-card);
}

.mirrors-table thead tr {
    background: rgba(2, 80, 75, .35);
}

.mirrors-table th {
    padding: 13px 16px;
    text-align: left;
    font-size: .8rem;
    font-weight: 700;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: .6px;
    border-bottom: 1px solid var(--clr-border);
}

.mirrors-table td {
    padding: 12px 16px;
    font-size: .88rem;
    color: var(--clr-text);
    border-bottom: 1px solid rgba(42, 74, 68, .4);
    text-align: left;
}

.mirrors-table tbody tr:last-child td {
    border-bottom: none;
}

.mirrors-table tbody tr:hover {
    background: rgba(255, 255, 255, .03);
}

.mirror-status-ok {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #3ddc84;
    font-weight: 600;
    font-size: .82rem;
}

.mirror-status-ok::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #3ddc84;
    border-radius: 50%;
    display: inline-block;
}

.mirror-link {
    color: var(--clr-accent);
    font-size: .82rem;
    text-decoration: none;
    font-weight: 600;
}

.mirror-link:hover {
    text-decoration: underline;
}

/* ==============================
   LIVE GAMES
============================== */
#xh-games {
    background: linear-gradient(180deg, var(--clr-bg) 0%, #0c2924 100%);
}

.games-slider-wrap {
    position: relative;
    overflow: hidden;
}

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

.game-card {
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}

.game-card-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.game-card-body {
    padding: 12px 10px;
    text-align: center;
}

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

.game-card-body .btn-game {
    width: 100%;
    background: var(--clr-btn-login);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 10px;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
    text-decoration: none;
    display: block;
}

.game-card-body .btn-game:hover {
    background: #036b64;
    color: #fff;
    text-decoration: none;
}

.game-provider-tag {
    font-size: .68rem;
    color: var(--clr-text-muted);
    margin-bottom: 4px;
}

/* Mobile games swiper */
.games-swiper-nav {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

/* ==============================
   DEMO GAME
============================== */
#xh-demo {
    background: #0a2421;
}

.demo-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

.demo-iframe-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    border: 1px solid var(--clr-border);
    position: relative;
}

.demo-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.demo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--clr-text-muted);
    font-size: .9rem;
    background: var(--clr-card);
    min-height: 300px;
}

.demo-placeholder .dp-icon {
    font-size: 2.5rem;
}

.demo-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-info-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px;
}

.demo-info-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.demo-info-card p {
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin: 0;
}

.demo-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.demo-stat {
    background: rgba(2, 80, 75, .2);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
}

.demo-stat-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-accent);
    display: block;
}

.demo-stat-label {
    font-size: .72rem;
    color: var(--clr-text-muted);
}

/* ==============================
   WHEEL OF FORTUNE
============================== */
#xh-wheel {
    background: linear-gradient(180deg, #0a2421 0%, #071a18 100%);
    text-align: center;
}

.wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.wheel-canvas-wrap {
    position: relative;
    display: inline-block;
}

#wheelCanvas {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(249, 199, 25, .2), 0 0 80px rgba(2, 80, 75, .3);
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 26px solid var(--clr-accent);
    filter: drop-shadow(0 2px 6px rgba(249, 199, 25, .5));
}

.wheel-result {
    display: none;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    text-align: center;
    animation: fadeInUp .4s ease;
    max-width: 340px;
}

.wheel-result.win {
    border-color: rgba(249, 199, 25, .5);
    background: rgba(249, 199, 25, .07);
}

.wheel-result.lose {
    border-color: rgba(255, 70, 70, .3);
    background: rgba(255, 70, 70, .05);
}

.wheel-result-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.wheel-result h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.wheel-result p {
    font-size: .9rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.wheel-result-bonus {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: 14px;
}

#spinBtn {
    background: linear-gradient(135deg, var(--clr-btn-reg) 0%, #e8b500 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(249, 199, 25, .35);
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    letter-spacing: .5px;
}

#spinBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(249, 199, 25, .55);
}

#spinBtn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

.wheel-note {
    font-size: .78rem;
    color: var(--clr-text-muted);
}

/* ==============================
   REVIEWS
============================== */
#xh-reviews {
    background: var(--clr-bg);
}

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

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

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-border);
}

.review-meta {
    flex: 1;
}

.review-meta strong {
    display: block;
    font-size: .9rem;
    color: #fff;
    margin-bottom: 2px;
}

.review-date {
    font-size: .73rem;
    color: var(--clr-text-muted);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.review-stars svg {
    width: 15px;
    height: 15px;
    fill: var(--clr-accent);
}

.review-text {
    font-size: .85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

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

.review-form-wrap h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.xh-form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.xh-form-group input,
.xh-form-group textarea {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--clr-text);
    font-size: .9rem;
    font-family: var(--font-main);
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}

.xh-form-group input:focus,
.xh-form-group textarea:focus {
    border-color: var(--clr-btn-login);
    background: rgba(255, 255, 255, .07);
}

.xh-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success-msg {
    display: none;
    background: rgba(61, 220, 132, .1);
    border: 1px solid rgba(61, 220, 132, .3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #3ddc84;
    font-size: .88rem;
    text-align: center;
    margin-top: 12px;
}

.form-success-msg.show {
    display: block;
    animation: fadeInUp .3s ease;
}

/* ==============================
   CONTENT / REVIEW ARTICLE
============================== */
#xh-content {
    background: #0c2924;
    padding: 60px 0;
}

.content-article-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.content-author-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 28px;
}

.content-author-box img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-btn-login);
}

.content-author-info strong {
    display: block;
    font-size: .9rem;
    color: #fff;
    margin-bottom: 2px;
}

.content-author-info span {
    font-size: .8rem;
    color: var(--clr-text-muted);
}

.content-author-link {
    margin-left: auto;
    font-size: .78rem;
    color: var(--clr-accent);
    text-decoration: none;
}

.content-author-link:hover {
    text-decoration: underline;
}

/* Bare content HTML styling */
.content-body h1, .content-body h2, .content-body h3,
.content-body h4, .content-body h5, .content-body h6 {
    color: #fff;
    margin: 1.4em 0 .5em;
    font-weight: 700;
    line-height: 1.25;
}

.content-body h2 {
    font-size: 1.4rem;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: .35em;
}

.content-body h3 {
    font-size: 1.15rem;
    color: var(--clr-accent);
}

.content-body p {
    color: var(--clr-text);
    margin-bottom: .9em;
    line-height: 1.75;
    font-size: .95rem;
}

.content-body a {
    color: var(--clr-accent);
}

.content-body ul, .content-body ol {
    color: var(--clr-text);
    padding-left: 1.5em;
    margin-bottom: 1em;
    font-size: .95rem;
    line-height: 1.7;
}

.content-body ul li {
    list-style: disc;
    margin-bottom: .35em;
}

.content-body ol li {
    list-style: decimal;
    margin-bottom: .35em;
}

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

.content-body em {
    font-style: italic;
    color: #b8cdc8;
}

.content-body blockquote {
    border-left: 3px solid var(--clr-btn-login);
    background: rgba(2, 80, 75, .12);
    padding: 12px 18px;
    margin: 1.2em 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #b8cdc8;
    font-style: italic;
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: .88rem;
    display: block;
    overflow-x: auto;
}

.content-body table th, .content-body table td {
    border: 1px solid var(--clr-border);
    padding: 9px 13px;
    text-align: left;
}

.content-body table th {
    background: rgba(2, 80, 75, .25);
    color: var(--clr-accent);
    font-weight: 700;
}

.content-body table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

.content-body img {
    border-radius: var(--radius-sm);
    max-width: 100%;
}

.content-body hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1.5em 0;
}

.content-body code {
    background: rgba(2, 80, 75, .2);
    border-radius: 4px;
    padding: 2px 7px;
    font-size: .85em;
    font-family: monospace;
    color: #a8ffd8;
}

.content-body pre {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 14px;
    overflow-x: auto;
    font-size: .85rem;
    margin-bottom: 1em;
}

/* FAQ inside content */
.content-body details {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    padding: 12px 16px;
}

.content-body details summary {
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: .9rem;
    outline: none;
    list-style: none;
}

.content-body details[open] summary {
    color: var(--clr-accent);
}

/* ==============================
   FOOTER
============================== */
#xh-footer {
    background: var(--clr-header);
    padding: 48px 0 24px;
}

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

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: .8rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--clr-accent);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-col ul li a {
    font-size: .82rem;
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--clr-accent);
}

/* Payment logos */
.footer-payments {
    margin-bottom: 20px;
}

.footer-payments h4 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.footer-logo-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .72rem;
    font-weight: 700;
    color: #c8dbd8;
    white-space: nowrap;
}

/* Providers */
.footer-providers {
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.footer-legal {
    font-size: .72rem;
    color: #5a7571;
    max-width: 680px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: .75rem;
    color: #5a7571;
}

.footer-license-badge {
    background: rgba(2, 80, 75, .2);
    border: 1px solid rgba(2, 80, 75, .4);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .7rem;
    color: #6abfba;
    font-weight: 600;
}

/* ==============================
   STICKY WIDGET
============================== */
#xh-widget {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: linear-gradient(135deg, #1a3832 0%, #0e2f2b 100%);
    border: 1px solid rgba(249, 199, 25, .35);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .55);
    animation: slideUpWidget .5s .8s both ease;
    max-width: calc(100vw - 32px);
}

@keyframes slideUpWidget {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.widget-bonus-text {
    font-size: .78rem;
    color: #c8dbd8;
    white-space: nowrap;
}

.widget-bonus-text strong {
    color: var(--clr-accent);
    font-weight: 800;
}

.widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    font-size: .9rem;
    padding: 2px 4px;
    line-height: 1;
    margin-left: -4px;
    transition: color var(--transition);
}

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

#widget-reg-btn {
    background: var(--clr-btn-reg);
    color: #1a1a1a !important;
    border: none;
    border-radius: 30px;
    padding: 9px 20px;
    font-size: .82rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition), box-shadow var(--transition);
}

#widget-reg-btn:hover {
    background: #ffd83a;
    box-shadow: 0 4px 14px rgba(249, 199, 25, .45);
}

/* ==============================
   ANIMATIONS
============================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.anim-fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   BREADCRUMB
============================== */
.xh-breadcrumb {
    padding: 10px 0;
    font-size: .78rem;
    color: var(--clr-text-muted);
}

.xh-breadcrumb a {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.xh-breadcrumb a:hover {
    color: var(--clr-accent);
}

.xh-breadcrumb span {
    margin: 0 6px;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1100px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .demo-inner {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hd-burger {
        display: flex;
    }

    .games-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .game-card {
        min-width: 150px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .games-swiper-nav {
        display: flex;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    #xh-widget {
        padding: 8px 14px;
        gap: 10px;
    }

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

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

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

    .hero-slide-inner {
        text-align: center;
    }

    .hero-slide-inner .hero-btns {
        justify-content: center;
    }

    .hd-inner {
        padding: 8px 14px;
    }

    .hd-logo-text {
        font-size: 1.05rem;
    }

    #xh-widget {
        left: 10px;
        right: 10px;
        transform: none;
        width: auto;
    }

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

.wp-block-image {
    max-width: 100%;
}

.alignnone, .alignleft, .alignright, .aligncenter {
    display: block;
}

.elementor-section {
    position: relative;
}

.elementor-column-gap-default {
    --e-column-margin-right: 10px;
    --e-column-margin-left: 10px;
}

.e-container {
    display: flex;
}

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

.entry-meta {
    font-size: .82rem;
    color: var(--clr-text-muted);
}

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

.post-categories, .post-tags {
    list-style: none;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.cat-item a, .tag-item a {
    background: rgba(2, 80, 75, .2);
    color: var(--clr-accent);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .72rem;
    text-decoration: none;
}

.qnvvs {
    max-width: 900px;
    margin: 48px auto;
    padding: 36px 32px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    color: var(--clr-text);
}

.qnvvs h1,
.qnvvs h2 {
    color: #fff;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
}

.qnvvs h1 {
    font-size: clamp(26px, 4vw, 38px);
}

.qnvvs h2 {
    font-size: clamp(20px, 3vw, 26px);
    margin-top: 32px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--clr-border);
}

.qnvvs p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

.qnvvs a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.qnvvs a:hover {
    color: #ffd83a;
}

@media (max-width: 768px) {
    .qnvvs {
        margin: 28px 12px;
        padding: 24px 18px;
        border-radius: var(--radius-md);
    }

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

    .qnvvs h2 {
        font-size: 18px;
    }

    .qnvvs p {
        font-size: 14px;
        line-height: 1.65;
    }
}

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

    .qnvvs h1 {
        font-size: 22px;
    }

    .qnvvs h2 {
        font-size: 17px;
    }

    .qnvvs p {
        font-size: 13.5px;
    }
}

@media (max-width: 900px) {
    #xh-games .games-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    #xh-games .game-card {
        min-width: 160px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    #xh-games .game-card-img {
        height: 200px;
        object-fit: cover;
    }

    #xh-games .game-card-body {
        padding: 12px 10px;
    }

    #xh-games .btn-game {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    #xh-games .game-card {
        min-width: 140px;
    }

    #xh-games .game-card-img {
        height: 180px;
    }

    #xh-games .game-card-body h3 {
        font-size: 13px;
    }

    #xh-games .game-provider-tag {
        font-size: 11px;
    }
}