@font-face {
    font-family: 'PT Sans';
    src: url('/fonts/PTSans-Regular.woff2') format('woff2'),
    url('/fonts/PTSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PT Sans';
    src: url('/fonts/PTSans-Bold.woff2') format('woff2'),
    url('/fonts/PTSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg: #323234;
    --color-header: #000000;
    --color-footer: #000000;
    --color-surface: #3e3e40;
    --color-surface2: #2a2a2c;
    --color-btn-login: #00fbc8;
    --color-btn-reg: #ff2e09;
    --color-text: #f0f0f0;
    --color-text-muted: #a0a0a8;
    --color-border: #4a4a4e;
    --color-accent: #00fbc8;
    --color-danger: #ff2e09;
    --color-pros: #1a3a2a;
    --color-cons: #3a1a1a;
    --font-main: 'PT Sans', 'Helvetica Neue', Arial, sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-btn: 0 2px 12px rgba(0, 251, 200, 0.25);
    --shadow-btn-reg: 0 2px 12px rgba(255, 46, 9, 0.30);
    --transition: 0.22s ease;
}

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

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

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

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

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

a:hover {
    color: #00e6b6;
}

/* Unused/camouflage elements */
.wp-hidden-el {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

.elementor-widget-container--hidden {
    overflow: hidden;
    height: 0;
    width: 0;
}

.entry-meta-hidden {
    font-size: 0;
    line-height: 0;
    color: transparent;
}

.wpcf7-hidden {
    position: absolute;
    left: -9999px;
}

.review-content-x7 {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.75;
    font-size: 1rem;
}

.review-content-x7 h1,
.review-content-x7 h2,
.review-content-x7 h3,
.review-content-x7 h4,
.review-content-x7 h5,
.review-content-x7 h6 {
    color: var(--color-accent);
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.review-content-x7 p {
    margin-bottom: 1rem;
}

.review-content-x7 a {
    color: var(--color-accent);
    text-decoration: underline;
}

.review-content-x7 a:hover {
    color: #00e6b6;
}

.review-content-x7 ul,
.review-content-x7 ol {
    margin: 0 0 1rem 1.4rem;
    padding: 0;
}

.review-content-x7 li {
    margin-bottom: 0.4rem;
}

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

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

.review-content-x7 blockquote {
    border-left: 4px solid var(--color-accent);
    padding: 0.7rem 1.2rem;
    margin: 1.2rem 0;
    background: var(--color-surface2);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    font-style: italic;
}

.review-content-x7 table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem auto;
    background: var(--color-surface2);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.review-content-x7 table th,
.review-content-x7 table td {
    text-align: left;
    padding: 0.7rem 1rem;
    border: 1px solid var(--color-border);
    white-space: nowrap;
}

.review-content-x7 table th {
    background: var(--color-header);
    color: var(--color-accent);
    font-weight: 700;
}

.review-content-x7 table tr:nth-child(even) {
    background: #2e2e30;
}

.review-content-x7 img {
    border-radius: var(--radius-md);
    margin: 1rem auto;
}

.review-content-x7 hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 1.5rem 0;
}

.review-content-x7 code {
    background: var(--color-surface2);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--color-accent);
}

.review-content-x7 pre {
    background: var(--color-surface2);
    padding: 1rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: 1rem;
}

.btn-login-x3 {
    background: var(--color-btn-login);
    color: #000 !important;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-family: var(--font-main);
    padding: 0.5rem 1.3rem;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    box-shadow: var(--shadow-btn);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-login-x3:hover, .btn-login-x3:focus {
    background: #00e6b6;
    box-shadow: 0 4px 20px rgba(0, 251, 200, 0.45);
    transform: translateY(-2px);
    color: #000 !important;
}

.btn-signup-x8 {
    background: var(--color-btn-reg);
    color: #fff !important;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-family: var(--font-main);
    padding: 0.5rem 1.3rem;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    box-shadow: var(--shadow-btn-reg);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-signup-x8:hover, .btn-signup-x8:focus {
    background: #e02700;
    box-shadow: 0 4px 20px rgba(255, 46, 9, 0.50);
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.05rem;
}

/* ------------------------------------------
   5. HEADER
------------------------------------------ */
.site-header-x9 {
    background-color: var(--color-header);
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.site-header-x9 .container {
    position: relative;
}

.hdr-x9k2 {
    min-height: 64px;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hdr-logo-img {
    object-fit: contain;
}

.hdr-nav-x4 {
    gap: 1.5rem;
}

.hdr-nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: color var(--transition);
    white-space: nowrap;
}

.hdr-nav-link:hover {
    color: var(--color-accent);
}

/* Online badge */
.hdr-online-badge {
    background: rgba(0, 251, 200, 0.1);
    border: 1px solid rgba(0, 251, 200, 0.25);
    border-radius: 20px;
    padding: 0.2rem 0.8rem;
    font-size: 0.8rem;
    color: var(--color-accent);
}

.hdr-online-dot {
    width: 8px;
    height: 8px;
    background: #00fb9a;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 251, 154, 0.5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(0, 251, 154, 0);
    }
}

.hdr-online-text {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Burger */
.hdr-burger-x5 {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.5rem;
    cursor: pointer;
    transition: border-color var(--transition);
}

.hdr-burger-x5:hover {
    border-color: var(--color-accent);
}

.burger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.burger-icon span {
    display: block;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.hdr-burger-x5.open .burger-icon span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile menu */
.hdr-mobile-menu-x6 {
    background: #111;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
    border-top: 1px solid #1a1a1a;
}

.hdr-mobile-menu-x6.open {
    max-height: 400px;
}

.mobile-nav-x2 {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0;
}

.mobile-nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7rem 0;
    border-bottom: 1px solid #222;
    transition: color var(--transition);
}

.mobile-nav-link:hover {
    color: var(--color-accent);
}

.mobile-menu-footer {
    border-top: 1px solid #222;
}

.hero-section-x3 {
    background: var(--color-header) url('/banner-pin-up.jpg') center center / cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay-x2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 100%);
    width: 100%;
    height: 100%;
}

.hero-overlay-x2 .container {
    position: relative;
    height: 100%;
    min-height: 520px;
}

.hero-content-x8 {
    max-width: 560px;
    padding: 3rem 0;
    animation: fadeInUp 0.7s ease both;
}

.hero-title-x6 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-sub-x4 {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.hero-sub-x4 strong {
    color: var(--color-accent);
}

.hero-btns-x5 {
    gap: 1rem;
}

.hero-btn-main {
    font-size: 1.1rem;
    padding: 0.8rem 2.2rem;
}

/* ------------------------------------------
   7. SECTION TITLES + LAYOUT
------------------------------------------ */
.section-title-x7 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.section-title-x7::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: var(--color-btn-reg);
    border-radius: 2px;
}

.content-block-x3 {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    box-shadow: var(--shadow-card);
}

/* ------------------------------------------
   8. BLOCK CARDS
------------------------------------------ */
.block-card-x2 {
    background: var(--color-surface2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow var(--transition), transform var(--transition);
}

.block-card-x2:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

/* Pros/Cons */
.block-card-header-x9 {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros-header {
    background: rgba(0, 251, 200, 0.12);
    color: var(--color-accent);
    border-left: 3px solid var(--color-accent);
}

.cons-header {
    background: rgba(255, 46, 9, 0.12);
    color: var(--color-btn-reg);
    border-left: 3px solid var(--color-btn-reg);
}

.block-icon-x1 {
    font-size: 1.1rem;
}

.pros-list-x3 li, .cons-list-x3 li {
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pros-list-x3 li:last-child, .cons-list-x3 li:last-child {
    border-bottom: none;
}

.pros-list-x3 li::before {
    content: '+ ';
    color: var(--color-accent);
    font-weight: 700;
}

.cons-list-x3 li::before {
    content: '- ';
    color: var(--color-btn-reg);
    font-weight: 700;
}

/* ------------------------------------------
   9. JACKPOTS
------------------------------------------ */
.jackpot-card-x6 {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a2c 100%);
    border: 1px solid var(--color-border);
    padding: 1.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.jackpot-card-x6::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 251, 200, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.jackpot-label-x1 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.jackpot-amount-x3 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--color-accent);
    font-variant-numeric: tabular-nums;
    transition: color 0.3s;
    min-height: 2.5rem;
}

.jackpot-game-x2 {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.3rem;
}

/* ------------------------------------------
   10. BONUS CARDS
------------------------------------------ */
.bonus-card-x7 {
    background: var(--color-surface2);
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 3px solid var(--color-btn-reg);
}

.bonus-card-icon-x3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.bonus-card-title-x2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.bonus-card-value-x5 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.7rem;
}

.bonus-card-desc-x4 {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

/* Carousel dots */
.carousel-indicators button {
    background-color: var(--color-border);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
}

.carousel-indicators button.active {
    background-color: var(--color-accent);
}

/* ------------------------------------------
   11. SLOT MACHINE
------------------------------------------ */
.slot-wrapper-x4 {
    max-width: 420px;
    background: linear-gradient(160deg, #1a1a2e 0%, #2d2d30 100%);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.slot-reels-x3 {
    justify-content: center;
}

.reel-x2 {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.1s ease;
    user-select: none;
}

.reel-x2.spinning {
    animation: reelSpin 0.12s steps(1) infinite;
}

@keyframes reelSpin {
    0% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.85);
    }
    100% {
        transform: scaleY(1);
    }
}

.slot-result-x5 {
    font-size: 1rem;
    color: var(--color-text-muted);
    min-height: 1.5rem;
}

.slot-win-block-x3 {
    animation: fadeInUp 0.4s ease both;
}

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

.slot-spin-btn-x4 {
    min-width: 160px;
    font-size: 1.1rem;
}

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

/* ------------------------------------------
   12. AUTHOR BLOCK
------------------------------------------ */
.review-author-x3 {
    background: var(--color-surface2);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    border-left: 3px solid var(--color-accent);
}

.author-avatar-x2 {
    width: 52px;
    height: 52px;
    background: var(--color-accent);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

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

.author-title-x3 {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.author-link-x2 {
    font-size: 0.8rem;
    color: var(--color-accent);
    text-decoration: none;
}

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

/* ------------------------------------------
   13. FAQ / ACCORDION
------------------------------------------ */
.faq-accordion-x3 .accordion-item {
    background: var(--color-surface2);
    border: 1px solid var(--color-border);
    margin-bottom: 0.5rem;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
}

.faq-accordion-x3 .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-btn-x2 {
    background: var(--color-surface2);
    color: var(--color-text);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 1.2rem;
    border: none;
    box-shadow: none !important;
}

.faq-btn-x2:not(.collapsed) {
    color: var(--color-accent);
    background: rgba(0, 251, 200, 0.07);
}

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

.faq-body-x4 {
    background: var(--color-surface2);
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 1rem 1.2rem;
    border-top: 1px solid var(--color-border);
}

/* ------------------------------------------
   14. FOOTER
------------------------------------------ */
.site-footer-x2 {
    background: var(--color-footer);
    border-top: 1px solid #1a1a1a;
    margin-top: 4rem;
}

.ftr-heading {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
}

.ftr-tagline {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.ftr-license-badge {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.8rem;
    border-left: 2px solid var(--color-accent);
}

.ftr-nav-list li {
    margin-bottom: 0.4rem;
}

.ftr-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.ftr-provider-badge, .ftr-payment-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.7rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.ftr-payment-badge {
    background: rgba(0, 251, 200, 0.06);
    border-color: rgba(0, 251, 200, 0.2);
    color: var(--color-accent);
}

.ftr-legal-text {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.ftr-copyright {
    font-size: 0.8rem;
    color: #555;
}

/* ------------------------------------------
   15. BOTTOM WIDGET
------------------------------------------ */
.bottom-widget-x3 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-header);
    border-top: 2px solid var(--color-btn-reg);
    z-index: 9999;
    padding: 0.7rem 1.5rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease 1.5s both;
}

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

.widget-bonus-x4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-btn-reg);
}

.widget-desc-x3 {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.widget-btn-x6 {
    white-space: nowrap;
    flex-shrink: 0;
}

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

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

/* Scroll padding for anchors (account for sticky header) */
[id] {
    scroll-margin-top: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-block-x3 {
        padding: 1.2rem;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content-x8 {
        padding: 2rem 0;
    }

    .hero-section-x3 {
        min-height: 400px;
    }

    .slot-wrapper-x4 {
        padding: 1.5rem 1rem;
    }

    .reel-x2 {
        width: 64px;
        height: 64px;
        font-size: 2.2rem;
    }

    .bottom-widget-x3 {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hdr-x9k2 {
        min-height: 56px;
    }

    .hero-title-x6 {
        font-size: 1.5rem;
    }

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

    .reel-x2 {
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
    }
}

/* Unused styles for uniqueness */
.g7k-placeholder {
    display: none;
    position: relative;
    width: 0;
    height: 0;
}

.x4r2-hidden-row {
    visibility: hidden;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.d9v-meta-wrap {
    opacity: 0;
    pointer-events: none;
}

.f3b-cloak-layer {
    position: absolute;
    z-index: -99;
}
