/* izzi casino styles v1.9 */
/* wp-content/themes/izzi-theme/style.css */

:root {
    --clr-bg: #101010;
    --clr-header: #000000;
    --clr-accent: #00AEEF;
    --clr-accent-hover: #0099d4;
    --clr-text: #e8e8e8;
    --clr-text-muted: #9a9a9a;
    --clr-card: #1a1a1a;
    --clr-card-border: #2a2a2a;
    --clr-gold: #f0c040;
    --radius: 10px;
    --font-main: 'Open Sans', 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* ======== UNUSED / UNIQUALIZATION ======== */
.wp-block-group {
    display: block;
}

.entry-content {
    display: block;
}

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

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.elementor-widget-wrap {
    position: relative;
}

.elementor-section-wrap {
    display: block;
}

.x9f2k3 {
    font-style: italic;
}

.b7r4m2 {
    letter-spacing: 0.02em;
}

.q1w8e7 {
    text-transform: uppercase;
}

/* =========================================  */

/* ======== LAYOUT ======== */
.iz-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

/* ======== HEADER ======== */
#iz-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 20px rgba(0, 174, 239, 0.08);
}

.iz-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 12px;
}

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

.iz-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.iz-nav a {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.iz-nav a:hover {
    color: var(--clr-accent);
}

.iz-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.iz-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    color: #8ecf8e;
    white-space: nowrap;
}

.iz-online-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: iz-pulse 1.8s infinite;
}

@keyframes iz-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

/* ======== BUTTONS ======== */
.iz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.iz-btn-sm {
    padding: 7px 16px;
    font-size: 13px;
}

.iz-btn-md {
    padding: 10px 22px;
    font-size: 14px;
}

.iz-btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.iz-btn-xl {
    padding: 16px 40px;
    font-size: 18px;
}

.iz-btn-login {
    background: transparent;
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
}

.iz-btn-login:hover {
    background: var(--clr-accent);
    color: #fff;
}

.iz-btn-primary {
    background: var(--clr-accent);
    color: #fff;
}

.iz-btn-primary:hover {
    background: var(--clr-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.35);
    color: #fff;
}

.iz-btn-gold {
    background: linear-gradient(135deg, #f0c040 0%, #e09a10 100%);
    color: #1a0a00;
    font-weight: 700;
}

.iz-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 192, 64, 0.4);
    color: #1a0a00;
}

/* ======== BURGER ======== */
.iz-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.iz-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.iz-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.iz-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.iz-mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    padding: 20px 16px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    animation: iz-slideDown 0.25s ease;
}

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

.iz-mobile-nav a {
    color: #cccccc;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
}

@keyframes iz-slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======== HERO ======== */
#iz-hero {
    position: relative;
    background: var(--clr-header);
    overflow: hidden;
    padding: 0;
}

.iz-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/izzi-hero.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.22;
}

.iz-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 60px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.iz-hero-content {
    flex: 1;
    min-width: 0;
}

.iz-hero-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
}

.iz-hero-content h1 span {
    color: var(--clr-accent);
}

.iz-hero-content p {
    font-size: 16px;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 480px;
}

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

/* ======== PROMO CARD ======== */
.iz-promo-card {
    background: #1a1a1a;
    border: 1px solid #2d2d2d;
    border-radius: 14px;
    padding: 28px 24px;
    min-width: 280px;
    max-width: 340px;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.iz-promo-card h3 {
    font-size: 13px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.iz-promo-code-box {
    background: #0d0d0d;
    border: 2px dashed var(--clr-accent);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.iz-promo-code-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--clr-accent);
    letter-spacing: 0.12em;
    font-family: monospace;
}

.iz-promo-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.iz-promo-status-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}

.iz-promo-actions {
    display: flex;
    gap: 8px;
}

.iz-promo-actions .iz-btn {
    flex: 1;
    justify-content: center;
}

.iz-copy-btn {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: var(--clr-text);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
}

.iz-copy-btn:hover {
    background: #333;
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.iz-copy-btn.copied {
    background: #1a3a1a;
    border-color: #4ade80;
    color: #4ade80;
}

/* ======== SECTION TITLES ======== */
.iz-section-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.iz-section-title span {
    color: var(--clr-accent);
}

.iz-section-subtitle {
    font-size: 15px;
    color: var(--clr-text-muted);
    margin-bottom: 36px;
    line-height: 1.6;
}

/* ======== JACKPOT BLOCK ======== */
#iz-jackpot {
    background: linear-gradient(180deg, #0a0a0a 0%, var(--clr-bg) 100%);
    padding: 48px 0;
    border-bottom: 1px solid #1a1a1a;
}

.iz-jackpot-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 16px;
}

.iz-jackpot-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-gold);
    font-weight: 600;
}

.iz-jackpot-amount {
    font-size: clamp(40px, 10vw, 80px);
    font-weight: 900;
    color: var(--clr-gold);
    letter-spacing: 0.04em;
    line-height: 1;
    text-shadow: 0 0 30px rgba(240, 192, 64, 0.5);
    font-variant-numeric: tabular-nums;
    transition: all 0.3s;
}

.iz-jackpot-sub {
    font-size: 15px;
    color: var(--clr-text-muted);
}

.iz-jackpot-stats {
    display: flex;
    gap: 32px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.iz-jackpot-stat {
    text-align: center;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 14px 24px;
}

.iz-jackpot-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-accent);
}

.iz-jackpot-stat span {
    font-size: 12px;
    color: var(--clr-text-muted);
}

/* ======== SCREENSHOTS ======== */
#iz-screenshots {
    background: var(--clr-bg);
}

.iz-screenshots-grid {
    display: flex;
    gap: 16px;
}

.iz-screenshot-item {
    flex: 1;
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s, box-shadow 0.3s;
}

.iz-screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 174, 239, 0.2);
}

.iz-screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.iz-screenshot-caption {
    background: #1a1a1a;
    padding: 12px 14px;
    font-size: 13px;
    color: var(--clr-text-muted);
    text-align: center;
}

/* ======== BONUSES ======== */
#iz-bonuses {
    background: #0d0d0d;
}

.iz-bonuses-grid {
    display: flex;
    gap: 16px;
}

.iz-bonus-card {
    flex: 1;
    min-width: 0;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.iz-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clr-accent);
}

.iz-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 174, 239, 0.15);
    border-color: var(--clr-accent);
}

.iz-bonus-card .iz-bonus-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.iz-bonus-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.iz-bonus-card .iz-bonus-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--clr-gold);
    margin-bottom: 10px;
}

.iz-bonus-card p {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

/* ======== SLOT GAME ======== */
#iz-slot {
    background: var(--clr-bg);
}

.iz-slot-machine {
    max-width: 480px;
    margin: 0 auto;
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.iz-slot-title-sm {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

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

.iz-reel {
    width: 88px;
    height: 100px;
    background: #0d0d0d;
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    overflow: hidden;
    position: relative;
}

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

@keyframes iz-spin {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px);
    }
    75% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0);
    }
}

.iz-spin-btn {
    background: linear-gradient(135deg, var(--clr-accent) 0%, #0085b8 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 48px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-main);
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.4);
    width: 100%;
    margin-bottom: 16px;
}

.iz-spin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 174, 239, 0.55);
}

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

.iz-slot-result {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.iz-slot-result .iz-result-win {
    color: var(--clr-gold);
    font-size: 18px;
    font-weight: 700;
    animation: iz-fadeIn 0.5s ease;
}

.iz-slot-result .iz-result-lose {
    color: var(--clr-text-muted);
    font-size: 14px;
    animation: iz-fadeIn 0.5s ease;
}

@keyframes iz-fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ======== FAQ ======== */
#iz-faq {
    background: #0d0d0d;
}

.iz-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.iz-faq-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.iz-faq-item.open {
    border-color: var(--clr-accent);
}

.iz-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    text-align: left;
    gap: 12px;
}

.iz-faq-q .iz-faq-icon {
    font-size: 20px;
    color: var(--clr-accent);
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
}

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

.iz-faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.iz-faq-item.open .iz-faq-a {
    max-height: 400px;
    padding: 4px 20px 18px;
}

.iz-faq-a p {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* ======== FOOTER ======== */
#iz-footer {
    background: var(--clr-header);
    border-top: 1px solid #1a1a1a;
    padding: 48px 0 0;
    margin-top: auto;
}

.iz-footer-top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 36px;
    border-bottom: 1px solid #1a1a1a;
}

.iz-footer-col {
    flex: 1;
    min-width: 180px;
}

.iz-footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

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

.iz-footer-col ul li a {
    font-size: 13px;
    color: var(--clr-text-muted);
    transition: color 0.2s;
}

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

.iz-footer-logos {
    padding: 28px 0;
    border-bottom: 1px solid #1a1a1a;
}

.iz-footer-logos h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

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

.iz-logo-badge {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--clr-text-muted);
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
}

.iz-logo-badge:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.iz-footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
}

.iz-footer-legal {
    font-size: 11px;
    color: #555;
    line-height: 1.6;
}

.iz-footer-legal a {
    color: #666;
    text-decoration: underline;
}

.iz-copyright {
    font-size: 12px;
    color: #444;
}

/* ======== BOTTOM WIDGET ======== */
#iz-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #000 0%, #0a0a0a 100%);
    border-top: 2px solid var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 174, 239, 0.2);
}

.iz-widget-text {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

.iz-widget-text span {
    color: var(--clr-accent);
}

.iz-widget-close {
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.2s;
}

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

/* ======== SLIDERS (mobile) ======== */
.iz-slider-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.iz-slider-wrap::-webkit-scrollbar {
    display: none;
}

/* ======== CONTENT BLOCK (raw HTML styles) ======== */
.iz-content-block h2, .iz-content-block h3, .iz-content-block h4 {
    color: #fff;
    margin: 1.4em 0 0.6em;
    line-height: 1.3;
}

.iz-content-block h2 {
    font-size: 22px;
}

.iz-content-block h3 {
    font-size: 18px;
}

.iz-content-block h4 {
    font-size: 16px;
}

.iz-content-block p {
    color: var(--clr-text-muted);
    margin-bottom: 1em;
    line-height: 1.75;
}

.iz-content-block ul, .iz-content-block ol {
    margin: 0.8em 0 1em 1.4em;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.iz-content-block li {
    margin-bottom: 6px;
}

.iz-content-block a {
    color: var(--clr-accent);
    text-decoration: underline;
}

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

.iz-content-block em {
    color: var(--clr-text);
}

.iz-content-block table {
    width: auto;
    max-width: 100%;
    margin: 1.2em auto;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

.iz-content-block th {
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-align: left;
    padding: 10px 14px;
    border: 1px solid #2a2a2a;
}

.iz-content-block td {
    color: var(--clr-text-muted);
    font-size: 13px;
    padding: 9px 14px;
    border: 1px solid #1e1e1e;
    text-align: left;
}

.iz-content-block tr:nth-child(even) td {
    background: #141414;
}

.iz-content-block blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: 10px 16px;
    margin: 1em 0;
    background: #141414;
    border-radius: 0 6px 6px 0;
    color: var(--clr-text-muted);
}

.iz-content-block hr {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 1.5em 0;
}

/* ======== AUTHOR BLOCK ======== */
.iz-author-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    margin-top: 40px;
}

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

.iz-author-info {
    flex: 1;
}

.iz-author-info strong {
    display: block;
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px;
}

.iz-author-info span {
    font-size: 12px;
    color: var(--clr-text-muted);
}

.iz-author-info p {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

.iz-author-link {
    color: var(--clr-accent) !important;
    font-size: 12px;
    margin-top: 6px;
    display: inline-block;
    text-decoration: underline !important;
}

/* ======== TRANSITIONS / ANIMATIONS ======== */
.iz-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.iz-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
    .iz-nav {
        display: none;
    }

    .iz-burger {
        display: flex;
    }

    .iz-hero-inner {
        flex-direction: column;
        padding: 40px 16px;
    }

    .iz-promo-card {
        max-width: 100%;
        width: 100%;
    }

    .iz-screenshots-grid,
    .iz-bonuses-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .iz-screenshots-grid::-webkit-scrollbar,
    .iz-bonuses-grid::-webkit-scrollbar {
        display: none;
    }

    .iz-screenshot-item {
        min-width: 260px;
    }

    .iz-bonus-card {
        min-width: 240px;
    }

    .iz-jackpot-stats {
        gap: 12px;
    }

    .iz-jackpot-stat {
        padding: 10px 16px;
    }

    .iz-footer-top {
        gap: 24px;
    }

    .iz-footer-col {
        min-width: 140px;
    }

    #iz-widget {
        padding: 8px 14px;
    }

    .iz-widget-text {
        font-size: 12px;
    }

    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .iz-slot-machine {
        padding: 24px 16px;
    }

    .iz-reel {
        width: 72px;
        height: 84px;
        font-size: 38px;
    }

    .iz-hero-content h1 {
        font-size: 26px;
    }
}

#wpadminbar {
    display: none !important;
}

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

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.wp-block-image figure {
    margin: 0;
}

.wp-block-separator {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 2em auto;
}

#wp-toolbar {
    display: none;
}

.ystjnd {
    --yst-bg: #101010;
    --yst-surface: #181818;
    --yst-surface-2: #1f1f1f;
    --yst-border: #2c2c2c;
    --yst-text: #e8e8e8;
    --yst-muted: #a0a0a0;
    --yst-accent: #00aeef;
    --yst-accent-hover: #33c4f4;
    --yst-radius: 18px;
    --yst-radius-sm: 10px;
    --yst-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    color: var(--yst-text);
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 40px;
    background: transparent;
}

.ystjnd > *:first-child {
    margin-top: 0;
}

.ystjnd h1,
.ystjnd h2,
.ystjnd h3,
.ystjnd h4,
.ystjnd h5,
.ystjnd h6 {
    color: #fff;
    line-height: 1.25;
    font-weight: 800;
    margin: 1.5em 0 0.65em;
}

.ystjnd h1 {
    font-size: clamp(30px, 4.2vw, 46px);
    margin-bottom: 20px;
}

.ystjnd h2 {
    font-size: clamp(24px, 3vw, 32px);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--yst-border);
}

.ystjnd h3 {
    font-size: clamp(20px, 2.4vw, 24px);
}

.ystjnd p,
.ystjnd li,
.ystjnd td,
.ystjnd th,
.ystjnd blockquote {
    font-size: 16px;
    line-height: 1.75;
}

.ystjnd p {
    color: var(--yst-text);
    margin: 0 0 18px;
}

.ystjnd a {
    color: var(--yst-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
    transition: color 0.2s ease;
}

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

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

.ystjnd em,
.ystjnd i {
    color: #d8d8d8;
}

.ystjnd ul,
.ystjnd ol {
    margin: 0 0 22px;
    padding-left: 0;
}

.ystjnd ul li,
.ystjnd ol li {
    color: var(--yst-text);
    margin: 0 0 12px;
}

.ystjnd ul li {
    list-style: none;
    position: relative;
    padding-left: 22px;
}

.ystjnd ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yst-accent);
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

.ystjnd ol {
    counter-reset: yst-counter;
}

.ystjnd ol li {
    list-style: none;
    counter-increment: yst-counter;
    position: relative;
    padding-left: 40px;
}

.ystjnd ol li::before {
    content: counter(yst-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 174, 239, 0.12);
    border: 1px solid rgba(0, 174, 239, 0.35);
    color: var(--yst-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.ystjnd blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--yst-accent);
    border-radius: 0 var(--yst-radius-sm) var(--yst-radius-sm) 0;
    background: linear-gradient(90deg, rgba(0, 174, 239, 0.12), rgba(0, 174, 239, 0.03));
    color: #d7ecf7;
}

.ystjnd blockquote p:last-child {
    margin-bottom: 0;
}

.ystjnd table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    border-spacing: 0;
    background: var(--yst-surface);
    border: 1px solid var(--yst-border);
    border-radius: var(--yst-radius);
    overflow: hidden;
    display: block;
    box-shadow: var(--yst-shadow);
}

.ystjnd thead,
.ystjnd tbody,
.ystjnd tr {
    width: 100%;
}

.ystjnd thead tr {
    background: #141414;
}

.ystjnd th,
.ystjnd td {
    padding: 14px 16px;
    text-align: left;
    border: 1px solid var(--yst-border);
    vertical-align: top;
    background: transparent;
}

.ystjnd th {
    color: #fff;
    font-weight: 700;
}

.ystjnd td {
    color: var(--yst-text);
}

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

.ystjnd tbody tr:hover {
    background: rgba(0, 174, 239, 0.06);
}

.ystjnd hr {
    border: 0;
    border-top: 1px solid var(--yst-border);
    margin: 28px 0;
}

.ystjnd img {
    border-radius: var(--yst-radius);
    margin: 24px 0;
    box-shadow: var(--yst-shadow);
}

.ystjnd > p,
.ystjnd > ul,
.ystjnd > ol,
.ystjnd > table,
.ystjnd > blockquote {
    background: var(--yst-surface);
    border: 1px solid var(--yst-border);
    border-radius: var(--yst-radius);
    padding: 22px 24px;
    box-shadow: var(--yst-shadow);
}

.ystjnd > p {
    margin-bottom: 18px;
}

.ystjnd > ul,
.ystjnd > ol,
.ystjnd > table,
.ystjnd > blockquote {
    margin-bottom: 22px;
}

.ystjnd > table {
    padding: 0;
}

@media (max-width: 992px) {
    .ystjnd {
        padding: 28px 18px 34px;
    }

    .ystjnd > p,
    .ystjnd > ul,
    .ystjnd > ol,
    .ystjnd > blockquote {
        padding: 18px 18px;
    }

    .ystjnd th,
    .ystjnd td {
        padding: 12px 14px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .ystjnd {
        padding: 24px 14px 30px;
    }

    .ystjnd h1 {
        margin-bottom: 16px;
    }

    .ystjnd h2 {
        margin-top: 28px;
    }

    .ystjnd p,
    .ystjnd li,
    .ystjnd td,
    .ystjnd th,
    .ystjnd blockquote {
        font-size: 15px;
        line-height: 1.68;
    }

    .ystjnd > p,
    .ystjnd > ul,
    .ystjnd > ol,
    .ystjnd > blockquote {
        padding: 16px;
        border-radius: 14px;
    }

    .ystjnd table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 14px;
    }

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

    .ystjnd table::-webkit-scrollbar-thumb {
        background: #3a3a3a;
        border-radius: 999px;
    }

    .ystjnd th,
    .ystjnd td {
        min-width: 170px;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .ystjnd {
        padding: 20px 12px 26px;
    }

    .ystjnd h1 {
        font-size: 28px;
    }

    .ystjnd h2 {
        font-size: 22px;
    }

    .ystjnd h3 {
        font-size: 19px;
    }

    .ystjnd > p,
    .ystjnd > ul,
    .ystjnd > ol,
    .ystjnd > blockquote {
        padding: 14px;
    }

    .ystjnd ul li {
        padding-left: 18px;
    }

    .ystjnd ol li {
        padding-left: 34px;
    }

    .ystjnd ol li::before {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .ystjnd th,
    .ystjnd td {
        padding: 10px 12px;
        font-size: 14px;
        min-width: 150px;
    }
}

.ystjnd {
    border: 1px solid #2c2c2c;
    border-radius: 18px;
}