/* Sultan Games — style.css?ver=1.7 */

/* === CSS Variables === */
:root {
    --clr-bg: #0e2f2b;
    --clr-bg-alt: #0a2320;
    --clr-header: #222723;
    --clr-btn-login: #02504b;
    --clr-btn-signup: #f9c719;
    --clr-btn-signup-hover: #e6b10f;
    --clr-btn-login-hover: #013d39;
    --clr-text: #e8f5e1;
    --clr-text-muted: #9bbba8;
    --clr-text-dark: #1a2e1a;
    --clr-accent: #02504b;
    --clr-accent-light: #04756e;
    --clr-gold: #f9c719;
    --clr-gold-dark: #c89c00;
    --clr-border: #1e4d40;
    --clr-card-bg: #132f28;
    --clr-card-bg-alt: #0c2520;
    --clr-success: #28a745;
    --clr-warning: #ffc107;
    --clr-error: #dc3545;
    --clr-neutral-100: #f0f7f0;
    --clr-neutral-200: #d4e8d4;
    --clr-neutral-700: #4a6b55;
    --font-main: 'Montserrat', 'Inter', 'Roboto', Arial, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.55);
    --transition: 0.25s ease;
}

/* === Unused decorative vars (for uniqualization) === */
:root {
    --xb4r9: #ff6b35;
    --qm92p: #7bc8a4;
    --lx7v3: #2d6a4f;
    --wz5k1: rgba(9, 57, 48, 0.85);
    --nr8t6: 1440px;
    --oj3c2: 48px;
}

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

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

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

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

a {
    color: var(--clr-gold);
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-btn-signup-hover);
}

/* Unused elements for uniqualization */
.xb4r9-el, .qm92p-item, .lx7v3-block, .wz5k1-wrap {
    display: none;
    visibility: hidden;
}

.nr8t6-cont {
    max-width: 1440px;
}

.unused-sidebar {
    float: none;
}

.decorative-rule {
    border: none;
}

/* === Buttons === */
.btn-login {
    background: var(--clr-btn-login);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-login:hover {
    background: var(--clr-btn-login-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(2, 80, 75, 0.4);
}

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

.btn-signup {
    background: var(--clr-btn-signup);
    color: var(--clr-text-dark);
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-signup:hover {
    background: var(--clr-btn-signup-hover);
    color: var(--clr-text-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(249, 199, 25, 0.4);
}

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

.btn-hero-signup {
    background: var(--clr-btn-signup);
    color: var(--clr-text-dark);
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 36px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 24px rgba(249, 199, 25, 0.35);
}

.btn-hero-signup:hover {
    background: var(--clr-btn-signup-hover);
    color: var(--clr-text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(249, 199, 25, 0.5);
}

.btn-hero-login {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-md);
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    cursor: pointer;
}

.btn-hero-login:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-2px);
}

.btn-slot-spin {
    background: linear-gradient(135deg, var(--clr-btn-login), var(--clr-accent-light));
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 44px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(2, 80, 75, 0.4);
    letter-spacing: 0.02em;
}

.btn-slot-spin:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(2, 80, 75, 0.55);
}

.btn-slot-spin:active {
    transform: translateY(0);
}

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

/* === Header === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-header);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hdr-wrap {
    padding: 0;
}

.hdr-inner {
    min-height: 64px;
    gap: 16px;
}

.logo-link {
    display: block;
    flex-shrink: 0;
}

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

/* Nav */
.nav-list {
    gap: 8px !important;
}

.nav-lnk {
    color: var(--clr-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    letter-spacing: 0.01em;
}

.nav-lnk:hover {
    color: var(--clr-gold);
    background: rgba(249, 199, 25, 0.07);
}

.nav-lnk--bonus {
    color: var(--clr-gold);
}

.nav-lnk--bonus:hover {
    background: rgba(249, 199, 25, 0.15);
}

/* Online counter */
.online-counter {
    flex-shrink: 0;
}

.online-dot {
    width: 9px;
    height: 9px;
    background: #4caf50;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-online 2s infinite;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6);
}

@keyframes pulse-online {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.online-txt {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* Burger */
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    gap: 5px;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.burger-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

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

/* Mobile nav */
.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-nav.open {
    max-height: 400px;
}

.mobile-nav-list {
    border-top: 1px solid var(--clr-border);
}

.mobile-nav-lnk {
    display: block;
    color: var(--clr-text);
    text-decoration: none;
    padding: 10px 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color var(--transition);
}

.mobile-nav-lnk:hover {
    color: var(--clr-gold);
}

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: url('/banner-cas-sultan.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 47, 43, 0.92) 0%, rgba(14, 47, 43, 0.78) 50%, rgba(34, 39, 35, 0.88) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 16px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(249, 199, 25, 0.15);
    border: 1px solid rgba(249, 199, 25, 0.35);
    border-radius: 50px;
    padding: 4px 18px;
}

.hero-badge-txt {
    font-size: 0.8rem;
    color: var(--clr-gold);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub strong {
    color: var(--clr-gold);
}

.hero-stats {
    margin-top: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    min-width: 100px;
}

.hero-stat-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--clr-gold);
    line-height: 1.2;
}

.hero-stat-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === Section Shared === */
.sect-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.sect-sub {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: 0;
}

.sect-hdr {
    margin-bottom: 2rem;
}

/* === Jackpots === */
.sect-jackpots {
    background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 100%);
}

.jackpot-card {
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.jackpot-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    pointer-events: none;
}

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

.jackpot-card--gold {
    background: linear-gradient(135deg, #1a2800, #2e4700);
    border-color: #c9a800;
    box-shadow: 0 0 20px rgba(201, 168, 0, 0.2);
}

.jackpot-card--silver {
    background: linear-gradient(135deg, #1a2530, #1e3040);
    border-color: #6b8fa8;
    box-shadow: 0 0 20px rgba(107, 143, 168, 0.2);
}

.jackpot-card--bronze {
    background: linear-gradient(135deg, #2a1a08, #3a2510);
    border-color: #b07030;
    box-shadow: 0 0 20px rgba(176, 112, 48, 0.2);
}

.jackpot-card--mini {
    background: linear-gradient(135deg, #132f28, #1a4035);
    border-color: var(--clr-accent-light);
    box-shadow: 0 0 20px rgba(4, 117, 110, 0.2);
}

.jackpot-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1;
}

.jackpot-name {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}

.jackpot-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--clr-gold);
    letter-spacing: -0.01em;
    text-shadow: 0 0 12px rgba(249, 199, 25, 0.3);
    font-variant-numeric: tabular-nums;
    transition: all 0.3s ease;
}

.jackpot-game {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 6px;
}

/* === Gallery === */
.sect-gallery {
    background: var(--clr-bg-alt);
}

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

@media (max-width: 767px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--clr-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.04);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    padding: 20px 12px 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}

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

/* === Content / CMS block === */
.sect-content {
    background: var(--clr-bg);
}

.content-inner {
    max-width: 860px;
    background: var(--clr-card-bg);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--clr-border);
    margin: 0 auto;
}

.cms-content {
    color: var(--clr-text);
    line-height: 1.75;
}

.cms-content h1, .cms-content h2, .cms-content h3, .cms-content h4 {
    color: #fff;
    font-weight: 700;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.3;
}

.cms-content h1 {
    font-size: 1.6rem;
}

.cms-content h2 {
    font-size: 1.35rem;
}

.cms-content h3 {
    font-size: 1.15rem;
}

.cms-content p {
    margin-bottom: 1em;
}

.cms-content a {
    color: var(--clr-gold);
    text-decoration: underline;
}

.cms-content a:hover {
    color: var(--clr-btn-signup-hover);
}

.cms-content ul, .cms-content ol {
    margin-bottom: 1em;
    padding-left: 1.5em;
}

.cms-content li {
    margin-bottom: 0.4em;
}

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

.cms-content em, .cms-content i {
    font-style: italic;
    color: var(--clr-text-muted);
}

.cms-content blockquote {
    border-left: 4px solid var(--clr-gold);
    margin: 1.5em 0;
    padding: 12px 20px;
    background: rgba(249, 199, 25, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em auto;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-align: left;
}

.cms-content th {
    background: var(--clr-accent);
    color: #fff;
    font-weight: 700;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
}

.cms-content td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
    background: var(--clr-card-bg-alt);
}

.cms-content tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.cms-content img {
    border-radius: var(--radius-sm);
    margin: 1em auto;
    display: block;
}

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

/* === Winners Table === */
.sect-winners {
    background: var(--clr-bg-alt);
}

.winners-table-wrap {
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.winners-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    min-width: 560px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: left;
}

.winners-table thead th {
    background: var(--clr-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 16px;
    border: 1px solid var(--clr-border);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.winners-table tbody td {
    padding: 10px 16px;
    font-size: 0.875rem;
    color: var(--clr-text);
    border: 1px solid var(--clr-border);
    background: var(--clr-card-bg);
}

.winners-table tbody tr:nth-child(even) td {
    background: var(--clr-card-bg-alt);
}

.winners-table tbody tr:hover td {
    background: rgba(2, 80, 75, 0.12);
}

.winners-table .win-amount {
    color: var(--clr-gold);
    font-weight: 700;
}

.winners-table .rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--clr-border);
    color: var(--clr-text-muted);
}

.winners-table .rank-1 .rank-badge {
    background: #c9a800;
    color: #000;
}

.winners-table .rank-2 .rank-badge {
    background: #6b8fa8;
    color: #fff;
}

.winners-table .rank-3 .rank-badge {
    background: #b07030;
    color: #fff;
}

/* === Video === */
.sect-video {
    background: var(--clr-bg);
}

.video-wrap {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
    aspect-ratio: 16/9;
}

.casino-iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border: none;
}

/* === Slot Machine === */
.sect-slot {
    background: var(--clr-bg-alt);
}

.slot-machine {
    max-width: 500px;
    background: var(--clr-card-bg);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 2px solid var(--clr-border);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-btn-login), var(--clr-gold), var(--clr-btn-login));
    background-size: 200%;
    animation: slot-rainbow 3s linear infinite;
}

@keyframes slot-rainbow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.reel-wrap {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-md);
    background: var(--clr-bg);
    border: 2px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.reel {
    font-size: 3rem;
    line-height: 1;
    transition: transform 0.1s;
    user-select: none;
}

.reel.spinning {
    animation: reel-spin 0.12s linear infinite;
}

@keyframes reel-spin {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}

.slot-result {
    font-size: 1.1rem;
    font-weight: 700;
    min-height: 32px;
}

.slot-result.win {
    color: var(--clr-gold);
    animation: fadeInUp 0.4s ease;
}

.slot-result.lose {
    color: var(--clr-text-muted);
}

.slot-win-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-gold);
}

/* === FAQ === */
.sect-faq {
    background: var(--clr-bg);
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-border) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-btn {
    background: var(--clr-card-bg) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    padding: 16px 20px;
    box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
    color: var(--clr-gold) !important;
}

.faq-btn::after {
    filter: invert(1) brightness(1.5);
}

.faq-body {
    background: var(--clr-card-bg-alt);
    color: var(--clr-text);
    padding: 16px 20px;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* === Author === */
.sect-author {
    background: var(--clr-bg-alt);
}

.author-card {
    max-width: 860px;
    background: var(--clr-card-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
}

.author-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--clr-gold);
    box-shadow: 0 0 0 4px rgba(249, 199, 25, 0.15);
}

.author-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.author-social-link {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.author-social-link--linkedin {
    background: #0077b5;
    color: #fff;
}

.author-social-link--linkedin:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}

/* === Footer === */
.ftr-outer {
    background: var(--clr-header);
}

.ftr-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-gold);
    font-weight: 700;
    margin-bottom: 12px;
}

.ftr-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.ftr-nav-list li {
    margin-bottom: 6px;
}

.ftr-nav-list a {
    color: var(--clr-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition);
}

.ftr-nav-list a:hover {
    color: var(--clr-gold);
}

.pay-badge, .prov-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    transition: background var(--transition), color var(--transition);
}

.pay-badge:hover, .prov-badge:hover {
    background: rgba(249, 199, 25, 0.1);
    color: var(--clr-gold);
}

.ftr-legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
}

.ftr-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.badge-18, .badge-curacao {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.badge-18 {
    background: #dc3545;
    color: #fff;
}

.badge-curacao {
    background: rgba(2, 80, 75, 0.6);
    color: var(--clr-gold);
    border: 1px solid rgba(249, 199, 25, 0.2);
}

.ftr-logo-link {
    display: block;
}

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

/* === Bonus Widget === */
.bonus-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--clr-header);
    border-top: 2px solid var(--clr-gold);
    padding: 12px 16px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.bonus-widget.visible {
    transform: translateY(0);
}

.bonus-widget-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
}

.bonus-widget-txt {
    display: flex;
    flex-direction: column;
}

.bonus-widget-lbl {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.bonus-widget-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.bonus-widget-btn {
    background: var(--clr-btn-signup);
    color: var(--clr-text-dark);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 24px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}

.bonus-widget-btn:hover {
    background: var(--clr-btn-signup-hover);
    color: var(--clr-text-dark);
    transform: scale(1.02);
}

.bonus-widget-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    line-height: 1;
    transition: color var(--transition);
    margin-left: auto;
}

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

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

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

.fade-in-up {
    animation: fadeInUp 0.5s ease both;
}

/* === Scroll reveal utility === */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 991px) {
    .hdr-inner {
        gap: 10px;
    }

    .content-inner {
        padding: 24px 18px;
    }

    .author-card {
        padding: 24px 18px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 420px;
    }

    .hero-content {
        padding: 60px 8px 60px;
    }

    .hero-h1 {
        font-size: 1.6rem;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-stat {
        padding: 12px 16px;
    }

    .hero-stat-num {
        font-size: 1.1rem;
    }

    .gallery-img {
        height: 200px;
    }

    .slot-machine {
        padding: 28px 18px;
    }

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

    .reel {
        font-size: 2.4rem;
    }

    .jackpot-amount {
        font-size: 1.3rem;
    }

    .bonus-widget-inner {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .btn-hero-signup, .btn-hero-login {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .logo-img {
        height: 34px;
    }

    .hero-stats {
        gap: 8px !important;
    }

    .hero-stat {
        padding: 10px 12px;
        min-width: 80px;
    }
}

.el-xb4r9 {
    opacity: 0;
    pointer-events: none;
}

.wp-block-cover__background {
    display: none;
}

.elementor-widget-wrap {
    clear: both;
}

.entry-content {
    overflow: visible;
}

.post-thumbnail {
    line-height: 0;
}

.oj3c2-spacer {
    height: 48px;
}

.qm92p-item-inner {
    padding: 0;
}

.lx7v3-grid-col {
    grid-column: span 1;
}

.nr8t6-block-inner {
    padding-inline: 0;
}

.wz5k1-container {
    position: relative;
}

.site-breadcrumb {
    display: none;
}

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

.wp-caption-text {
    font-size: 0;
}

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

@media (max-width: 768px) {
    .winners-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

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

    .winners-table-wrap::-webkit-scrollbar-thumb {
        background: #1e4d40;
        border-radius: 4px;
    }

    .winners-table {
        min-width: 600px;
    }
}