/* ==========================================================
   Izzi Casino — style.css?ver=1.7
   ========================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    --izzi-bg: #101010;
    --izzi-header: #000000;
    --izzi-footer: #000000;
    --izzi-accent: #00AEEF;
    --izzi-accent-h: #0099d4;
    --izzi-text: #e8e8e8;
    --izzi-text-muted: #9a9a9a;
    --izzi-border: #2a2a2a;
    --izzi-card: #181818;
    --izzi-card2: #1e1e1e;
    --izzi-gold: #f5a623;
    --izzi-win: #4cde7a;
    --izzi-radius: 10px;
    --izzi-radius-sm: 6px;
    --izzi-shadow: 0 4px 24px rgba(0, 174, 239, .15);
    --font-main: 'Open Sans', sans-serif;
    --font-alt: 'Roboto', sans-serif;
}

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

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

body {
    background-color: var(--izzi-bg);
    color: var(--izzi-text);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--izzi-accent);
    text-decoration: none;
    transition: color .2s;
}

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

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ---------- Unused / Obfuscation styles ---------- */
.x7k2m-unused-a {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.b8f2q-hidden-block {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.wp-dummy-nav {
    display: none !important;
}

.elementor-hidden-block {
    display: none !important;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-alt);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

p {
    margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .55rem 1.4rem;
    border-radius: var(--izzi-radius-sm);
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .2s, opacity .2s;
    white-space: nowrap;
    text-decoration: none !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 239, .35);
}

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

/* ---------- Header ---------- */
.x7k2m-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--izzi-header);
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.x7k2m-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .6rem 1.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

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

.x7k2m-nav-list {
    display: flex;
    gap: .2rem;
}

.x7k2m-nav-link {
    color: #ccc;
    font-size: .85rem;
    font-family: var(--font-alt);
    padding: .4rem .7rem;
    border-radius: var(--izzi-radius-sm);
    transition: color .2s, background .2s;
}

.x7k2m-nav-link:hover {
    color: #fff;
    background: rgba(0, 174, 239, .12);
}

.x7k2m-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.x7k2m-online-count {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--izzi-text-muted);
    white-space: nowrap;
}

.x7k2m-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--izzi-win);
    animation: x7k2m-pulse 1.8s infinite;
    display: inline-block;
}

@keyframes x7k2m-pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(76, 222, 122, .5);
    }
    50% {
        opacity: .8;
        box-shadow: 0 0 0 5px rgba(76, 222, 122, 0);
    }
}

.x7k2m-header-btns {
    display: flex;
    gap: .5rem;
}

.x7k2m-btn-login {
    background: transparent;
    border: 1.5px solid var(--izzi-accent);
    color: var(--izzi-accent) !important;
}

.x7k2m-btn-login:hover {
    background: var(--izzi-accent);
    color: #fff !important;
}

.x7k2m-btn-signup {
    background: var(--izzi-accent);
    color: #fff !important;
}

.x7k2m-btn-signup:hover {
    background: var(--izzi-accent-h);
}

/* Burger */
.x7k2m-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--izzi-radius-sm);
}

.x7k2m-burger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

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

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

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

.x7k2m-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 998;
}

.x7k2m-mobile-overlay.active {
    display: block;
}

/* ---------- Hero Slider ---------- */
.x7k2m-hero {
    position: relative;
    overflow: hidden;
}

.b8r3f-slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.b8r3f-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .7s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.b8r3f-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .3) 60%, rgba(0, 0, 0, .05) 100%);
}

.b8r3f-slide.active {
    opacity: 1;
    z-index: 1;
}

.b8r3f-slide-inner {
    position: relative;
    z-index: 2;
    padding: 0 5% 0 7%;
    max-width: 650px;
}

.b8r3f-slide-title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .7rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
    line-height: 1.2;
}

.b8r3f-slide-sub {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: #d0efff;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.b8r3f-btn-hero {
    background: var(--izzi-accent);
    color: #fff !important;
    font-size: 1rem;
    padding: .75rem 2rem;
    border-radius: var(--izzi-radius);
    box-shadow: 0 4px 20px rgba(0, 174, 239, .4);
    animation: x7k2m-hero-pulse 2s infinite;
}

.b8r3f-btn-hero:hover {
    background: var(--izzi-accent-h);
    transform: translateY(-3px) scale(1.03);
}

@keyframes x7k2m-hero-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 174, 239, .4);
    }
    50% {
        box-shadow: 0 4px 32px rgba(0, 174, 239, .7);
    }
}

.b8r3f-prev, .b8r3f-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.b8r3f-prev {
    left: 1.5rem;
}

.b8r3f-next {
    right: 1.5rem;
}

.b8r3f-prev:hover, .b8r3f-next:hover {
    background: var(--izzi-accent);
    border-color: var(--izzi-accent);
}

.b8r3f-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: .5rem;
}

.b8r3f-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: background .2s, transform .2s;
}

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

/* ---------- Main / Container ---------- */
.x7k2m-main {
    padding: 2rem 0 3rem;
}

/* ---------- Sections ---------- */
.x7k2m-section {
    background: var(--izzi-card);
    border-radius: var(--izzi-radius);
    border: 1px solid var(--izzi-border);
    padding: 2rem 2rem 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .3);
    transition: box-shadow .3s;
}

.x7k2m-section:hover {
    box-shadow: 0 4px 28px rgba(0, 174, 239, .08);
}

.x7k2m-section-title {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    color: #fff;
    margin-bottom: .5rem;
    position: relative;
    padding-bottom: .7rem;
}

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

.x7k2m-section-sub {
    color: var(--izzi-text-muted);
    font-size: .9rem;
    margin-bottom: 1.5rem;
}

/* Breadcrumb */
.x7k2m-breadcrumb {
    margin-top: 1rem;
}

.breadcrumb-item a {
    color: var(--izzi-accent);
    font-size: .85rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--izzi-text-muted);
}

.breadcrumb-item.active {
    color: var(--izzi-text-muted);
    font-size: .85rem;
}

/* ---------- Info Table ---------- */
.x7k2m-info-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    min-width: 480px;
}

.x7k2m-info-table tbody tr {
    border-bottom: 1px solid var(--izzi-border);
    transition: background .2s;
}

.x7k2m-info-table tbody tr:hover {
    background: rgba(0, 174, 239, .05);
}

.x7k2m-info-table th {
    text-align: left;
    padding: .75rem 1rem;
    color: var(--izzi-text-muted);
    font-weight: 600;
    font-size: .88rem;
    white-space: nowrap;
    width: 220px;
    border-right: 1px solid var(--izzi-border);
}

.x7k2m-info-table td {
    padding: .75rem 1rem;
    color: var(--izzi-text);
    font-size: .9rem;
}

.x7k2m-info-table td strong {
    color: var(--izzi-accent);
}

/* ---------- Winners Table ---------- */
.x7k2m-winners-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    min-width: 400px;
}

.x7k2m-winners-table thead th {
    background: #111;
    color: var(--izzi-text-muted);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .65rem 1rem;
    border-bottom: 2px solid var(--izzi-accent);
}

.x7k2m-winners-table tbody tr {
    border-bottom: 1px solid var(--izzi-border);
    transition: background .2s;
}

.x7k2m-winners-table tbody tr:hover {
    background: rgba(0, 174, 239, .06);
}

.x7k2m-winners-table tbody td {
    padding: .6rem 1rem;
    font-size: .88rem;
    color: var(--izzi-text);
}

.x7k2m-win {
    color: var(--izzi-win) !important;
    font-weight: 700;
    font-family: var(--font-alt);
}

/* ---------- Video ---------- */
.x7k2m-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--izzi-radius-sm);
    border: 1px solid var(--izzi-border);
}

.x7k2m-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ---------- Bonus Cards ---------- */
.x7k2m-bonus-slider-wrap {
    position: relative;
}

.x7k2m-bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.x7k2m-bonus-card {
    background: var(--izzi-card2);
    border: 1px solid var(--izzi-border);
    border-radius: var(--izzi-radius);
    padding: 1.75rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}

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

.x7k2m-bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--izzi-accent);
    box-shadow: var(--izzi-shadow);
}

.x7k2m-bonus-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--izzi-accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .55rem;
    border-radius: 20px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.x7k2m-bonus-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.x7k2m-bonus-title {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 700;
    margin-top: .25rem;
}

.x7k2m-bonus-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--izzi-accent);
    font-family: var(--font-alt);
    line-height: 1;
}

.x7k2m-bonus-desc {
    font-size: .82rem;
    color: var(--izzi-text-muted);
    line-height: 1.5;
    margin: .25rem 0;
}

.x7k2m-bonus-terms {
    font-size: .78rem;
    color: #666;
    line-height: 1.6;
    width: 100%;
    text-align: left;
    padding-left: .5rem;
}

.x7k2m-bonus-terms li::before {
    content: '• ';
    color: var(--izzi-accent);
}

.x7k2m-btn-bonus {
    background: var(--izzi-accent);
    color: #fff !important;
    width: 100%;
    margin-top: .5rem;
    border-radius: var(--izzi-radius-sm);
}

.x7k2m-btn-bonus:hover {
    background: var(--izzi-accent-h);
}

.x7k2m-bonus-dots {
    display: none;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
}

.x7k2m-bdot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: background .2s;
}

.x7k2m-bdot.active {
    background: var(--izzi-accent);
}

/* ---------- Wheel of Fortune ---------- */
.x7k2m-wheel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.x7k2m-wheel-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.x7k2m-wheel-pointer {
    font-size: 2rem;
    color: var(--izzi-accent);
    line-height: 1;
    margin-bottom: -8px;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 174, 239, .6));
}

#x7k2m-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 174, 239, .2), 0 0 30px rgba(0, 174, 239, .15);
    max-width: 100%;
    display: block;
}

.x7k2m-wheel-controls {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.x7k2m-btn-spin {
    background: var(--izzi-accent);
    color: #fff !important;
    font-size: 1.1rem;
    padding: .85rem 2.5rem;
    border-radius: var(--izzi-radius);
    box-shadow: 0 4px 20px rgba(0, 174, 239, .35);
    min-width: 200px;
}

.x7k2m-btn-spin:hover {
    background: var(--izzi-accent-h);
}

.x7k2m-btn-spin:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none !important;
}

.x7k2m-wheel-result {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: 1rem;
    font-weight: 600;
}

.x7k2m-wheel-result.win {
    color: var(--izzi-win);
}

.x7k2m-wheel-result.lose {
    color: #e55;
}

.x7k2m-wheel-result a.btn {
    background: var(--izzi-win);
    color: #000 !important;
    font-weight: 700;
    padding: .6rem 1.5rem;
}

.x7k2m-wheel-result a.btn:hover {
    opacity: .9;
}

/* ---------- Review Content ---------- */
.x7k2m-author-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .8rem 1rem;
    background: rgba(0, 174, 239, .07);
    border-left: 3px solid var(--izzi-accent);
    border-radius: var(--izzi-radius-sm);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: .3rem .8rem;
}

.x7k2m-author-label {
    color: var(--izzi-text-muted);
    font-size: .82rem;
}

.x7k2m-author-name {
    color: var(--izzi-accent);
    font-weight: 600;
    font-size: .9rem;
}

.x7k2m-author-title {
    color: var(--izzi-text-muted);
    font-size: .82rem;
}

/* Raw content styling (no classes on inner HTML) */
.x7k2m-content-body {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--izzi-text);
}

.x7k2m-content-body h1,
.x7k2m-content-body h2,
.x7k2m-content-body h3,
.x7k2m-content-body h4 {
    color: #fff;
    margin: 1.5rem 0 .6rem;
    font-family: var(--font-alt);
}

.x7k2m-content-body h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-top: 0;
    margin-bottom: 1rem;
}

.x7k2m-content-body h2 {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
}

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

.x7k2m-content-body p {
    margin-bottom: .9rem;
}

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

.x7k2m-content-body a:hover {
    text-decoration: underline;
}

.x7k2m-content-body ul,
.x7k2m-content-body ol {
    margin: .75rem 0 .75rem 1.5rem;
    padding: 0;
}

.x7k2m-content-body ul {
    list-style: disc;
}

.x7k2m-content-body ol {
    list-style: decimal;
}

.x7k2m-content-body li {
    margin-bottom: .35rem;
}

.x7k2m-content-body strong {
    color: #fff;
}

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

.x7k2m-content-body blockquote {
    border-left: 3px solid var(--izzi-accent);
    padding: .7rem 1rem;
    margin: 1rem 0;
    background: rgba(0, 174, 239, .06);
    border-radius: 0 var(--izzi-radius-sm) var(--izzi-radius-sm) 0;
    color: #bbb;
    font-style: italic;
}

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

.x7k2m-content-body th,
.x7k2m-content-body td {
    border: 1px solid var(--izzi-border);
    padding: .6rem .9rem;
    text-align: left;
}

.x7k2m-content-body th {
    background: #111;
    color: #ccc;
}

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

.x7k2m-content-body img {
    border-radius: var(--izzi-radius-sm);
    max-width: 100%;
    height: auto;
    margin: .5rem 0;
}

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

.x7k2m-content-body code {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: .1rem .4rem;
    border-radius: 3px;
    font-family: monospace;
    font-size: .85em;
    color: var(--izzi-accent);
}

/* ---------- FAQ ---------- */
.x7k2m-faq-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.x7k2m-faq-item {
    border: 1px solid var(--izzi-border);
    border-radius: var(--izzi-radius-sm);
    overflow: hidden;
}

.x7k2m-faq-q {
    width: 100%;
    background: var(--izzi-card2);
    color: #fff;
    font-family: var(--font-alt);
    font-weight: 600;
    font-size: .95rem;
    text-align: left;
    padding: 1rem 1.2rem;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    transition: background .2s;
}

.x7k2m-faq-q::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--izzi-accent);
    flex-shrink: 0;
    transition: transform .3s;
    font-weight: 300;
}

.x7k2m-faq-q[aria-expanded="true"] {
    background: rgba(0, 174, 239, .08);
}

.x7k2m-faq-q[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.x7k2m-faq-q:hover {
    background: rgba(0, 174, 239, .05);
}

.x7k2m-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s;
}

.x7k2m-faq-a.open {
    max-height: 300px;
}

.x7k2m-faq-a p {
    padding: .9rem 1.2rem 1rem;
    font-size: .88rem;
    color: var(--izzi-text-muted);
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid var(--izzi-border);
}

/* ---------- Reviews Grid ---------- */
.x7k2m-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.x7k2m-review-card {
    background: var(--izzi-card2);
    border: 1px solid var(--izzi-border);
    border-radius: var(--izzi-radius);
    padding: 1.25rem;
    transition: transform .2s, border-color .2s;
}

.x7k2m-review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 174, 239, .35);
}

.x7k2m-rev-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .8rem;
}

.x7k2m-rev-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 174, 239, .3);
    flex-shrink: 0;
}

.x7k2m-rev-name {
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
}

.x7k2m-rev-text {
    font-size: .85rem;
    color: #bbb;
    line-height: 1.6;
    margin: 0;
}

/* ---------- Review Form ---------- */
.x7k2m-review-form-wrap {
    background: var(--izzi-card2);
    border: 1px solid var(--izzi-border);
    border-radius: var(--izzi-radius);
    padding: 1.75rem;
    max-width: 620px;
}

.x7k2m-form-title {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 1.25rem;
    font-family: var(--font-alt);
}

.x7k2m-review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.x7k2m-field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.x7k2m-label {
    font-size: .85rem;
    color: var(--izzi-text-muted);
    font-weight: 600;
}

.x7k2m-label span {
    color: #e55;
}

.x7k2m-input, .x7k2m-textarea {
    width: 100%;
    background: #111;
    border: 1.5px solid var(--izzi-border);
    border-radius: var(--izzi-radius-sm);
    color: var(--izzi-text);
    font-family: var(--font-main);
    font-size: .9rem;
    padding: .65rem .9rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.x7k2m-input:focus, .x7k2m-textarea:focus {
    border-color: var(--izzi-accent);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, .15);
}

.x7k2m-input::placeholder, .x7k2m-textarea::placeholder {
    color: #444;
}

.x7k2m-textarea {
    resize: vertical;
    min-height: 120px;
}

.x7k2m-btn-submit {
    background: var(--izzi-accent);
    color: #fff !important;
    padding: .7rem 1.8rem;
    align-self: flex-start;
}

.x7k2m-btn-submit:hover {
    background: var(--izzi-accent-h);
}

.x7k2m-form-msg {
    font-size: .88rem;
    padding: .6rem .9rem;
    border-radius: var(--izzi-radius-sm);
    display: none;
}

.x7k2m-form-msg.success {
    display: block;
    background: rgba(76, 222, 122, .1);
    border: 1px solid rgba(76, 222, 122, .3);
    color: var(--izzi-win);
}

.x7k2m-form-msg.error {
    display: block;
    background: rgba(229, 85, 85, .1);
    border: 1px solid rgba(229, 85, 85, .3);
    color: #e55;
}

/* ---------- Footer ---------- */
.x7k2m-footer {
    background: var(--izzi-footer);
    border-top: 1px solid #1a1a1a;
    padding: 2.5rem 0 1.5rem;
    margin-top: 1rem;
}

.x7k2m-footer-top {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #1a1a1a;
}

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

.x7k2m-footer-tagline {
    font-size: .78rem;
    color: #555;
    margin-top: .5rem;
}

.x7k2m-footer-nav {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.x7k2m-footer-nav-col ul {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.x7k2m-footer-nav-title {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #555;
    margin-bottom: .6rem;
}

.x7k2m-footer-nav-col a {
    font-size: .83rem;
    color: #777;
    transition: color .2s;
}

.x7k2m-footer-nav-col a:hover {
    color: var(--izzi-accent);
}

.x7k2m-footer-section-label {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #444;
    margin-bottom: .7rem;
    font-weight: 700;
}

.x7k2m-footer-payments,
.x7k2m-footer-providers {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #1a1a1a;
}

.x7k2m-payment-icons,
.x7k2m-provider-icons {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.x7k2m-pay-badge,
.x7k2m-prov-badge {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: var(--izzi-radius-sm);
    padding: .3rem .75rem;
    font-size: .75rem;
    font-weight: 700;
    color: #888;
    font-family: var(--font-alt);
    letter-spacing: .03em;
    transition: border-color .2s, color .2s;
}

.x7k2m-pay-badge:hover,
.x7k2m-prov-badge:hover {
    border-color: var(--izzi-accent);
    color: var(--izzi-accent);
}

.x7k2m-footer-legal {
    font-size: .75rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.x7k2m-footer-legal p {
    margin-bottom: .4rem;
}

.x7k2m-footer-legal strong {
    color: #666;
}

.x7k2m-footer-copy {
    text-align: center;
    font-size: .75rem;
    color: #333;
}

/* ---------- Bottom Widget ---------- */
.x7k2m-bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #000 0%, #0a1520 60%, #000 100%);
    border-top: 2px solid var(--izzi-accent);
    box-shadow: 0 -4px 20px rgba(0, 174, 239, .25);
    transform: translateY(0);
    transition: transform .4s ease;
}

.x7k2m-bottom-widget.hidden {
    transform: translateY(110%);
}

.x7k2m-widget-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: .8rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.x7k2m-widget-text {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.x7k2m-widget-bonus {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--izzi-accent);
    font-family: var(--font-alt);
}

.x7k2m-widget-sub {
    font-size: .78rem;
    color: #888;
}

.x7k2m-widget-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--izzi-accent);
    color: #fff !important;
    font-weight: 700;
    font-size: .95rem;
    padding: .65rem 1.8rem;
    border-radius: var(--izzi-radius-sm);
    text-decoration: none !important;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 3px 15px rgba(0, 174, 239, .4);
    white-space: nowrap;
}

.x7k2m-widget-btn:hover {
    background: var(--izzi-accent-h);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 174, 239, .55);
}

.x7k2m-widget-close {
    background: transparent;
    border: 1px solid #333;
    color: #555;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, color .2s;
    flex-shrink: 0;
}

.x7k2m-widget-close:hover {
    border-color: #e55;
    color: #e55;
}

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

.x7k2m-animate-in {
    animation: x7k2m-fadeInUp .5s ease forwards;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .x7k2m-nav-list {
        gap: 0;
    }

    .x7k2m-nav-link {
        font-size: .8rem;
        padding: .4rem .55rem;
    }
}

@media (max-width: 900px) {
    .x7k2m-bonus-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .x7k2m-bonus-grid .x7k2m-bonus-card {
        display: none;
    }

    .x7k2m-bonus-grid .x7k2m-bonus-card.active {
        display: flex;
    }

    .x7k2m-bonus-dots {
        display: flex;
    }

    .x7k2m-wheel-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .x7k2m-nav {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: #000;
        border-right: 1px solid #1a1a1a;
        z-index: 999;
        transition: left .35s ease;
        padding: 5rem 1.5rem 2rem;
        overflow-y: auto;
    }

    .x7k2m-nav.open {
        left: 0;
    }

    .x7k2m-nav-list {
        flex-direction: column;
        gap: .2rem;
    }

    .x7k2m-nav-link {
        font-size: 1rem;
        padding: .75rem .9rem;
        border-radius: var(--izzi-radius-sm);
    }

    .x7k2m-burger {
        display: flex;
    }

    .x7k2m-header-right {
        gap: .6rem;
    }

    .x7k2m-online-count {
        display: none;
    }

    .b8r3f-slider {
        height: 380px;
    }

    .b8r3f-slide-inner {
        padding: 0 1.5rem 0 1.5rem;
    }

    .x7k2m-section {
        padding: 1.5rem 1rem;
    }

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

    .x7k2m-footer-top {
        flex-direction: column;
        gap: 1.5rem;
    }

    .x7k2m-footer-nav {
        gap: 1.5rem;
    }

    .x7k2m-widget-inner {
        gap: .75rem;
        padding: .6rem 1rem;
    }

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

@media (max-width: 480px) {
    .x7k2m-header-inner {
        padding: .5rem 1rem;
    }

    .x7k2m-btn-login {
        display: none;
    }

    .b8r3f-slider {
        height: 280px;
    }

    .b8r3f-slide-title {
        font-size: 1.3rem;
    }

    .b8r3f-slide-sub {
        font-size: .82rem;
    }

    .b8r3f-btn-hero {
        padding: .6rem 1.4rem;
        font-size: .9rem;
    }

    .b8r3f-prev, .b8r3f-next {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }

    .x7k2m-section {
        padding: 1.2rem .75rem;
        margin-bottom: 1rem;
    }

    .x7k2m-info-table th {
        width: 140px;
        font-size: .8rem;
        padding: .6rem .75rem;
    }

    .x7k2m-info-table td {
        font-size: .82rem;
        padding: .6rem .75rem;
    }

    #x7k2m-wheel-canvas {
        width: 280px;
        height: 280px;
    }
}

html {
    scroll-padding-top: 72px;
}

.ysffs {
    max-width: 1120px;
    margin: 0 auto;
    padding: 32px 20px 56px;
    background: #101010;
    color: #e8e8e8;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.ysffs h1,
.ysffs h2,
.ysffs h3,
.ysffs h4,
.ysffs h5,
.ysffs h6 {
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    color: #ffffff;
    line-height: 1.28;
    font-weight: 700;
}

.ysffs h1 {
    font-size: clamp(30px, 4vw, 46px);
    margin: 0 0 22px;
    color: #00AEEF;
    letter-spacing: -0.02em;
}

.ysffs h2 {
    font-size: clamp(22px, 2.6vw, 32px);
    margin: 38px 0 16px;
    padding-bottom: 10px;
    position: relative;
}

.ysffs h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 68px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #00AEEF 0%, rgba(0, 174, 239, 0.15) 100%);
}

.ysffs h3 {
    font-size: clamp(19px, 2vw, 24px);
    margin: 28px 0 12px;
    color: #dff7ff;
}

.ysffs p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #d4d4d4;
}

.ysffs strong,
.ysffs b {
    color: #ffffff;
    font-weight: 700;
}

.ysffs em,
.ysffs i {
    color: #f2f2f2;
}

.ysffs a {
    color: #00AEEF;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .25s ease, opacity .25s ease;
    word-break: break-word;
}

.ysffs a:hover {
    color: #58cbff;
}

.ysffs ul,
.ysffs ol {
    margin: 0 0 18px 0;
    padding-left: 0;
}

.ysffs ul li,
.ysffs ol li {
    position: relative;
    margin: 0 0 12px;
    padding-left: 22px;
    color: #d8d8d8;
    line-height: 1.75;
}

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

.ysffs ol {
    counter-reset: ysffs-counter;
}

.ysffs ol li {
    list-style: none;
}

.ysffs ol li::before {
    counter-increment: ysffs-counter;
    content: counter(ysffs-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: #00AEEF;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.ysffs table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    overflow-x: auto;
    white-space: normal;
}

.ysffs table tbody,
.ysffs table thead {
    width: 100%;
}

.ysffs tr {
    border-bottom: 1px solid #2a2a2a;
}

.ysffs tr:last-child {
    border-bottom: 0;
}

.ysffs th,
.ysffs td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-right: 1px solid #2a2a2a;
    min-width: 220px;
}

.ysffs th:last-child,
.ysffs td:last-child {
    border-right: 0;
}

.ysffs th {
    background: #121212;
    color: #00AEEF;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ysffs td {
    color: #dddddd;
    font-size: 15px;
    line-height: 1.65;
}

.ysffs tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.015);
}

.ysffs blockquote {
    margin: 22px 0;
    padding: 18px 20px;
    border-left: 4px solid #00AEEF;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 0 14px 14px 0;
    color: #f0f7fa;
}

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

.ysffs hr {
    border: 0;
    border-top: 1px solid #2a2a2a;
    margin: 28px 0;
}

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

.ysffs > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .ysffs {
        padding: 28px 18px 44px;
        border-radius: 18px;
    }

    .ysffs h1 {
        margin-bottom: 18px;
    }

    .ysffs h2 {
        margin-top: 32px;
    }

    .ysffs th,
    .ysffs td {
        min-width: 190px;
        padding: 13px 14px;
    }
}

@media (max-width: 767px) {
    .ysffs {
        padding: 22px 14px 36px;
        border-radius: 16px;
    }

    .ysffs p,
    .ysffs ul li,
    .ysffs ol li,
    .ysffs td {
        font-size: 15px;
        line-height: 1.7;
    }

    .ysffs h2 {
        margin-top: 28px;
        margin-bottom: 14px;
    }

    .ysffs blockquote {
        padding: 16px 16px 16px 18px;
    }

    .ysffs table {
        border-radius: 14px;
    }

    .ysffs th,
    .ysffs td {
        min-width: 170px;
        padding: 12px 12px;
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .ysffs {
        padding: 18px 12px 30px;
        border-radius: 14px;
    }

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

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

    .ysffs h3 {
        font-size: 18px;
    }

    .ysffs p {
        font-size: 14px;
    }

    .ysffs ul li,
    .ysffs ol li {
        padding-left: 18px;
        font-size: 14px;
    }

    .ysffs ul li::before {
        width: 7px;
        height: 7px;
        top: 10px;
    }

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

    .ysffs ol li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .ysffs table {
        display: block;
        overflow-x: auto;
    }

    .ysffs th,
    .ysffs td {
        min-width: 150px;
        padding: 11px 10px;
        font-size: 13px;
    }

    .ysffs blockquote {
        padding: 14px 14px 14px 16px;
        border-radius: 0 12px 12px 0;
    }
}

.x7k2m-info-table,
.x7k2m-winners-table,
.x7k2m-content-body table {
    background: #181818 !important;
}

.x7k2m-info-table th,
.x7k2m-info-table td,
.x7k2m-winners-table th,
.x7k2m-winners-table td,
.x7k2m-content-body th,
.x7k2m-content-body td {
    background: transparent !important;
}

.x7k2m-info-table tbody tr,
.x7k2m-winners-table tbody tr,
.x7k2m-content-body table tr {
    background: transparent !important;
}

.x7k2m-info-table tbody tr:nth-child(even) td,
.x7k2m-winners-table tbody tr:nth-child(even) td,
.x7k2m-content-body table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03) !important;
}

.table,
.table-responsive table,
.table-responsive .table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.03);
    --bs-table-hover-bg: rgba(0, 174, 239, 0.05);
    --bs-table-color: #e8e8e8;
    color: #e8e8e8 !important;
    background-color: transparent !important;
}

.table > :not(caption) > * > *,
.table-responsive table > :not(caption) > * > * {
    background-color: transparent !important;
    color: #e8e8e8 !important;
    box-shadow: none !important;
}

.x7k2m-info-table th {
    background: #111111 !important;
    color: #9a9a9a !important;
}

.x7k2m-winners-table thead th,
.x7k2m-content-body th {
    background: #111111 !important;
    color: #cccccc !important;
}

.b8r3f-slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.b8r3f-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    transition: opacity .7s ease, visibility .7s ease;
}

.b8r3f-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.b8r3f-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .3) 60%, rgba(0, 0, 0, .05) 100%);
}

.b8r3f-slide-inner {
    position: relative;
    z-index: 3;
    padding: 0 5% 0 7%;
    max-width: 650px;
}

.b8r3f-prev,
.b8r3f-next,
.b8r3f-dots {
    z-index: 5;
}