/* ============================================================
   Izzi Casino — Main Stylesheet v1.7
   Colors: #000000 header/footer, #101010 bg, #00AEEF accent
   Fonts: Roboto (headings), Open Sans (body)
   ============================================================ */

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

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

body.xb7-body {
    background-color: #101010;
    color: #e8e8e8;
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
}

a {
    color: #00AEEF;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #33c0f5;
}

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

/* --- Utility --- */
.xk91-accent {
    color: #00AEEF;
}

.d-none {
    display: none !important;
}

.w-100 {
    width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.xb7-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #000000;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 12px rgba(0, 174, 239, 0.08);
}

.xb7-header__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    flex-wrap: nowrap;
}

.xb7-header__logo img {
    height: 44px;
    width: auto;
}

.xb7-header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #aaa;
    white-space: nowrap;
    flex-shrink: 0;
}

.xb7-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d97e;
    animation: pulse-dot 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.xb7-header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.xb7-header__nav-link {
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.xb7-header__nav-link:hover {
    color: #00AEEF;
    background: rgba(0, 174, 239, 0.08);
}

.xb7-header__auth {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.xb7-btn-login {
    background: transparent;
    border: 1.5px solid #00AEEF;
    color: #00AEEF;
    padding: 7px 16px;
    font-size: 14px;
    border-radius: 8px;
}

.xb7-btn-login:hover {
    background: rgba(0, 174, 239, 0.1);
    color: #00AEEF;
}

.xb7-btn-signup, .xk91-btn-primary {
    background: #00AEEF;
    color: #000000 !important;
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.4);
}

.xb7-btn-signup:hover, .xk91-btn-primary:hover {
    background: #00c3ff;
    color: #000000 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.35);
}

.xb7-btn-outline {
    background: transparent;
    border: 1.5px solid #00AEEF;
    color: #00AEEF;
    padding: 9px 18px;
    font-size: 14px;
    border-radius: 8px;
}

.xb7-btn-outline:hover {
    background: rgba(0, 174, 239, 0.1);
    color: #00AEEF;
}

.xk91-btn-lg {
    padding: 13px 32px;
    font-size: 17px;
    border-radius: 10px;
}

@keyframes xk91-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.55);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(0, 174, 239, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 174, 239, 0);
    }
}

.xk91-pulse {
    animation: xk91-pulse 2s infinite;
}

/* --- Burger --- */
.xb7-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.xb7-burger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

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

.xb7-burger.is-active .xb7-burger__line:nth-child(2) {
    opacity: 0;
}

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

/* --- Mobile Menu --- */
.xb7-mobile-menu {
    display: none;
    flex-direction: column;
    background: #000000;
    border-top: 1px solid #1c1c1c;
    padding: 8px 0 12px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.3s ease;
}

.xb7-mobile-menu.is-open {
    display: flex;
    max-height: 400px;
    padding: 8px 0 12px;
}

.xb7-mobile-menu__link {
    color: #cccccc;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    border-bottom: 1px solid #1a1a1a;
    transition: color 0.2s ease, background 0.2s ease;
}

.xb7-mobile-menu__link:hover {
    color: #00AEEF;
    background: rgba(0, 174, 239, 0.06);
}

/* ============================================================
   HERO
   ============================================================ */
.xk91-hero {
    position: relative;
    overflow: hidden;
    background: #050505;
    min-height: 520px;
}

.xk91-hero__slider {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.xk91-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.7s ease;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xk91-hero__slide--active {
    opacity: 1;
    position: relative;
}

.xk91-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 20, 40, 0.55) 100%);
}

.xk91-hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.xk91-hero__title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    margin-bottom: 16px;
    text-wrap: balance;
}

.xk91-hero__sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #d0e8f0;
    margin-bottom: 28px;
    text-wrap: pretty;
}

.xk91-hero__prev, .xk91-hero__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xk91-hero__prev {
    left: 16px;
}

.xk91-hero__next {
    right: 16px;
}

.xk91-hero__prev:hover, .xk91-hero__next:hover {
    background: rgba(0, 174, 239, 0.65);
}

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

.xk91-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.xk91-hero__dot--active {
    background: #00AEEF;
    transform: scale(1.3);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.xb7-section {
    padding: 64px 0;
    animation: xb7-fadein 0.5s ease both;
}

.xb7-section--dark {
    background-color: #0a0a0a;
}

@keyframes xb7-fadein {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.xb7-section__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 12px;
}

.xb7-section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: #00AEEF;
    border-radius: 2px;
}

.xb7-section__sub {
    color: #999;
    font-size: 15px;
    margin-bottom: 28px;
    text-wrap: pretty;
}

/* ============================================================
   TABLES
   ============================================================ */
.xb7-table-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #222;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.xb7-info-table {
    margin-bottom: 0;
    background: #141414;
}

.xb7-info-table tbody tr {
    transition: background 0.15s ease;
}

.xb7-info-table tbody tr:hover {
    background: #1c1c1c;
}

.xb7-info-table th {
    color: #00AEEF;
    font-weight: 600;
    width: 38%;
    padding: 11px 16px;
    border-color: #222;
    font-size: 14px;
    background: #111;
    white-space: nowrap;
}

.xb7-info-table td {
    color: #d0d0d0;
    padding: 11px 16px;
    border-color: #222;
    font-size: 14px;
}

.xb7-winners-table {
    margin-bottom: 0;
    background: #111;
}

.xb7-winners-table thead tr {
    background: #000;
}

.xb7-winners-table thead th {
    color: #00AEEF;
    border-color: #222;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.xb7-winners-table tbody tr {
    transition: background 0.15s ease;
    border-color: #1c1c1c;
}

.xb7-winners-table tbody tr:hover {
    background: #1a1a1a;
}

.xb7-winners-table tbody td {
    color: #d0d0d0;
    padding: 9px 14px;
    border-color: #1e1e1e;
    font-size: 14px;
}

.xb7-win {
    color: #00d97e;
    font-weight: 700;
}

/* ============================================================
   APP SECTION
   ============================================================ */
.xb7-app-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.xb7-app-btn {
    background: #1a1a1a;
    color: #e8e8e8;
    border: 1.5px solid #333;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    gap: 8px;
}

.xb7-app-btn:hover {
    border-color: #00AEEF;
    background: #1f1f1f;
    color: #ffffff;
    transform: translateY(-2px);
}

.xb7-app-btn--apk {
    border-color: #00AEEF;
    color: #00AEEF;
}

.xb7-app-img {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid #222;
}

/* ============================================================
   VIDEO
   ============================================================ */
.xb7-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #222;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

/* ============================================================
   REVIEW / AUTHOR
   ============================================================ */
.xb7-author-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #141414;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 24px;
}

.xb7-author-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00AEEF;
    flex-shrink: 0;
}

.xb7-author-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.xb7-author-card__info strong {
    color: #ffffff;
    font-size: 15px;
}

.xb7-author-card__info span {
    color: #999;
    font-size: 13px;
    line-height: 1.5;
}

.xb7-author-card__link {
    color: #00AEEF;
    font-size: 13px;
    font-weight: 600;
}

/* Content body — styles bare HTML tags from CMS #}*/
.xb7-content-body {
    color: #d0d0d0;
    line-height: 1.7;
}

.xb7-content-body h1,
.xb7-content-body h2,
.xb7-content-body h3,
.xb7-content-body h4 {
    color: #ffffff;
    margin: 28px 0 12px;
}

.xb7-content-body h1 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.xb7-content-body h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

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

.xb7-content-body p {
    margin-bottom: 16px;
}

.xb7-content-body ul,
.xb7-content-body ol {
    margin: 0 0 16px 20px;
}

.xb7-content-body li {
    margin-bottom: 6px;
}

.xb7-content-body a {
    color: #00AEEF;
    text-decoration: underline;
}

.xb7-content-body strong {
    color: #ffffff;
}

.xb7-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}

.xb7-content-body table th,
.xb7-content-body table td {
    padding: 10px 14px;
    text-align: left;
    border: 1px solid #2a2a2a;
    font-size: 14px;
}

.xb7-content-body table th {
    background: #111;
    color: #00AEEF;
    font-weight: 700;
}

.xb7-content-body table tr:hover {
    background: #1a1a1a;
}

.xb7-content-body blockquote {
    border-left: 3px solid #00AEEF;
    padding: 12px 18px;
    background: #141414;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    color: #bbb;
}

.xb7-content-body img {
    border-radius: 8px;
    margin: 16px 0;
}

/* Sidebar card */
.xb7-sidebar-card {
    background: #141414;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 80px;
}

.xb7-sidebar-card__rating {
    margin-bottom: 20px;
}

.xb7-rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #00AEEF;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.xb7-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 6px;
}

.xb7-rating-label {
    color: #888;
    font-size: 13px;
}

/* ============================================================
   WHEEL OF FORTUNE
   ============================================================ */
.xb7-wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 0 6px #1a1a1a, 0 0 0 9px #00AEEF, 0 0 40px rgba(0, 174, 239, 0.25);
    display: block;
    max-width: 320px;
    width: 100%;
    height: auto;
}

.xb7-wheel-pointer {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 26px solid #00AEEF;
    filter: drop-shadow(0 2px 6px rgba(0, 174, 239, 0.6));
}

.xb7-spin-btn {
    min-width: 160px;
}

.xb7-wheel-result {
    margin-top: 20px;
    background: #141414;
    border: 1px solid #00AEEF;
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    animation: xb7-fadein 0.4s ease;
}

.xb7-wheel-result__text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.xb7-wheel-result__btn {
    margin-top: 12px !important;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.xb7-review-card {
    background: #141414;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: border-color 0.25s ease, transform 0.2s ease;
}

.xb7-review-card:hover {
    border-color: #00AEEF;
    transform: translateY(-3px);
}

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

.xb7-review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00AEEF;
    flex-shrink: 0;
}

.xb7-review-card__top strong {
    color: #ffffff;
    font-size: 15px;
    display: block;
    margin-bottom: 2px;
}

.xb7-review-stars {
    display: flex;
    gap: 2px;
}

.xb7-review-card p {
    color: #c0c0c0;
    font-size: 14px;
    line-height: 1.65;
}

/* Review Form */
.xb7-review-form-wrap {
    background: #141414;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 28px;
}

.xb7-review-form__title {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.xb7-form-label {
    display: block;
    color: #bbb;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

.xb7-form-control {
    display: block;
    width: 100%;
    background: #111;
    border: 1.5px solid #2a2a2a;
    border-radius: 8px;
    color: #e8e8e8;
    font-size: 15px;
    padding: 10px 14px;
    transition: border-color 0.2s ease;
    font-family: 'Open Sans', sans-serif;
}

.xb7-form-control::placeholder {
    color: #555;
}

.xb7-form-control:focus {
    outline: none;
    border-color: #00AEEF;
    background: #141414;
}

.xb7-form-textarea {
    resize: vertical;
    min-height: 110px;
}

.xb7-form-success {
    margin-top: 14px;
    background: rgba(0, 217, 126, 0.1);
    border: 1px solid #00d97e;
    border-radius: 8px;
    padding: 12px 16px;
    color: #00d97e;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.xb7-faq {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.xb7-faq__item {
    background: #141414;
    border: 1px solid #222;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.xb7-faq__item.is-open {
    border-color: #00AEEF;
}

.xb7-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 18px;
    font-family: 'Roboto', sans-serif;
    transition: color 0.2s ease;
}

.xb7-faq__q:hover {
    color: #00AEEF;
}

.xb7-faq__q::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: #00AEEF;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.xb7-faq__item.is-open .xb7-faq__q::after {
    transform: rotate(45deg);
}

.xb7-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 18px;
}

.xb7-faq__item.is-open .xb7-faq__a {
    max-height: 300px;
    padding: 0 18px 16px;
}

.xb7-faq__a p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.xb7-footer {
    background: #000000;
    border-top: 1px solid #1a1a1a;
    padding: 48px 0 24px;
    margin-top: 0;
}

.xb7-footer__logo img {
    height: 40px;
    width: auto;
}

.xb7-footer__desc {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.xb7-footer__heading {
    color: #00AEEF;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.xb7-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.xb7-footer__list li {
    margin-bottom: 8px;
}

.xb7-footer__list a {
    color: #888;
    font-size: 14px;
    transition: color 0.2s ease;
}

.xb7-footer__list a:hover {
    color: #00AEEF;
}

.xb7-footer__payments,
.xb7-footer__providers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.xb7-payment-badge,
.xb7-provider-badge {
    background: #141414;
    border: 1px solid #2a2a2a;
    color: #bbb;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.xb7-footer__bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    margin-top: 24px;
}

.xb7-footer__legal {
    color: #555;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.xb7-footer__copyright {
    color: #444;
    font-size: 12px;
    margin-top: 12px;
}

/* ============================================================
   STICKY WIDGET
   ============================================================ */
.xb7-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #000000;
    border-top: 2px solid #00AEEF;
    box-shadow: 0 -4px 20px rgba(0, 174, 239, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.xb7-sticky-widget.is-visible {
    transform: translateY(0);
}

.xb7-sticky-widget__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 12px 20px;
}

.xb7-sticky-widget__text {
    display: flex;
    flex-direction: column;
}

.xb7-sticky-widget__label {
    color: #888;
    font-size: 12px;
}

.xb7-sticky-widget__bonus {
    color: #00AEEF;
    font-size: 18px;
    font-weight: 700;
}

.xb7-sticky-widget__btn {
    white-space: nowrap;
    padding: 10px 24px;
    font-size: 15px;
    flex-shrink: 0;
}

.xb7-sticky-widget__close {
    background: none;
    border: none;
    color: #555;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.xb7-sticky-widget__close:hover {
    color: #ffffff;
}

/* ============================================================
   UNUSED / OBFUSCATION STYLES (WP-style decoys)
   ============================================================ */
.wp-block-group__inner-container {
    display: flow-root;
}

.wp-block-cover__inner-container {
    width: 100%;
    z-index: 1;
    color: #fff;
}

.entry-content .alignleft {
    float: left;
}

.entry-content .alignright {
    float: right;
}

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

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
}

.elementor-section {
    position: relative;
}

.elementor-widget-wrap {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}

.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: 10px;
}

.yoast-seo-breadcrumb {
    font-size: 14px;
    color: #888;
}

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

.xb9r-unused-elem {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.xb9r-hidden-block {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .xb7-header__nav {
        display: none !important;
    }

    .xb7-header__inner {
        flex-wrap: nowrap;
    }

    .xk91-hero {
        min-height: 400px;
    }

    .xk91-hero__slide {
        min-height: 400px;
    }

    .xk91-hero__title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .xb7-section {
        padding: 44px 0;
    }

    .xk91-hero {
        min-height: 320px;
    }

    .xk91-hero__slide {
        min-height: 320px;
    }

    .xk91-hero__content {
        padding: 48px 16px;
    }

    .xb7-sticky-widget__bonus {
        font-size: 15px;
    }

    .xb7-sticky-widget__btn {
        padding: 9px 16px;
        font-size: 13px;
    }

    #wheelCanvas {
        width: 260px;
        height: 260px;
    }

    .xb7-header__auth .xb7-btn-login {
        display: none;
    }
}

@media (max-width: 480px) {
    .xb7-header__inner {
        padding: 8px 12px;
        gap: 8px;
    }

    .xb7-btn-signup {
        padding: 7px 12px;
        font-size: 12px;
    }

    .xk91-hero__sub {
        display: none;
    }
}

.bgdxysg {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 24px 72px;
    background: linear-gradient(180deg, #161616 0%, #101010 100%);
    border: 1px solid #2a2a2a;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    color: #e6e6e6;
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.72;
}

.bgdxysg * {
    box-sizing: border-box;
}

.bgdxysg h1,
.bgdxysg h2,
.bgdxysg h3,
.bgdxysg h4,
.bgdxysg h5,
.bgdxysg h6 {
    margin: 0 0 18px;
    line-height: 1.24;
    color: #ffffff;
}

.bgdxysg h1 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 800;
    margin-bottom: 24px;
}

.bgdxysg h2 {
    font-size: clamp(1.42rem, 2.7vw, 2rem);
    font-weight: 800;
    margin-top: 42px;
    padding-left: 16px;
    border-left: 4px solid #00aeef;
}

.bgdxysg h3 {
    font-size: clamp(1.1rem, 2vw, 1.42rem);
    font-weight: 700;
    margin-top: 28px;
    color: #33c0f5;
}

.bgdxysg p {
    margin: 0 0 18px;
    font-size: 1rem;
    color: #d5d5d5;
}

.bgdxysg a {
    color: #00aeef;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
    word-break: break-word;
}

.bgdxysg a:hover {
    color: #33c0f5;
}

.bgdxysg strong {
    color: #ffffff;
}

.bgdxysg ul,
.bgdxysg ol {
    margin: 0 0 24px;
    padding-left: 0;
}

.bgdxysg ul li,
.bgdxysg ol li {
    margin-bottom: 12px;
    color: #d9d9d9;
}

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

.bgdxysg ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00aeef 0%, #33c0f5 100%);
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

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

.bgdxysg ol li {
    list-style: none;
    position: relative;
    padding-left: 46px;
    counter-increment: bgdxysg-counter;
}

.bgdxysg ol li::before {
    content: counter(bgdxysg-counter);
    position: absolute;
    left: 0;
    top: -1px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00aeef 0%, #33c0f5 100%);
    color: #111111;
    font-size: 0.88rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bgdxysg li p {
    margin-bottom: 0;
}

.bgdxysg table,
.bgdxysg .table,
.bgdxysg .xb7-content-body table {
    width: 100%;
    margin: 24px 0 28px;
    border-collapse: separate;
    border-spacing: 0;
    background: #181818 !important;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    overflow: hidden;
}

.bgdxysg thead,
.bgdxysg thead tr,
.bgdxysg .table thead,
.bgdxysg .table thead tr {
    background: linear-gradient(135deg, #00aeef 0%, #33c0f5 100%) !important;
}

.bgdxysg th,
.bgdxysg .table th,
.bgdxysg .xb7-content-body table th {
    padding: 16px 18px;
    text-align: left;
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.bgdxysg td,
.bgdxysg .table td,
.bgdxysg .xb7-content-body table td {
    padding: 15px 18px;
    font-size: 0.96rem;
    color: #d8d8d8;
    border: 0 !important;
    border-top: 1px solid #2a2a2a !important;
    vertical-align: top;
    background: transparent !important;
    box-shadow: none !important;
}

.bgdxysg tbody tr,
.bgdxysg .table tbody tr {
    background: transparent !important;
}

.bgdxysg tbody tr:nth-child(even) td,
.bgdxysg table tr:nth-child(even) td,
.bgdxysg .table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02) !important;
}

.bgdxysg blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(0, 174, 239, 0.08);
    border-left: 4px solid #00aeef;
    border-radius: 0 14px 14px 0;
    color: #dedede;
}

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

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

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

@media (max-width: 991px) {
    .bgdxysg {
        padding: 32px 20px 60px;
        border-radius: 20px;
    }

    .bgdxysg h2 {
        margin-top: 34px;
    }

    .bgdxysg table,
    .bgdxysg .table,
    .bgdxysg .xb7-content-body table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .bgdxysg {
        padding: 24px 16px 48px;
        border-radius: 18px;
        line-height: 1.62;
    }

    .bgdxysg h1 {
        margin-bottom: 20px;
    }

    .bgdxysg h2 {
        margin-top: 28px;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .bgdxysg p,
    .bgdxysg li,
    .bgdxysg td,
    .bgdxysg th {
        font-size: 0.95rem;
    }

    .bgdxysg th,
    .bgdxysg td {
        padding: 13px 14px;
    }

    .bgdxysg ol li {
        padding-left: 40px;
    }

    .bgdxysg ol li::before {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .bgdxysg {
        padding: 20px 12px 40px;
        border-radius: 16px;
    }

    .bgdxysg h1 {
        font-size: 1.72rem;
    }

    .bgdxysg h2 {
        font-size: 1.22rem;
    }

    .bgdxysg h3 {
        font-size: 1.02rem;
    }

    .bgdxysg p {
        font-size: 0.93rem;
        margin-bottom: 16px;
    }

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

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

    .bgdxysg table,
    .bgdxysg .table {
        border-radius: 14px;
    }

    .bgdxysg th,
    .bgdxysg td {
        padding: 12px;
        font-size: 0.9rem;
    }
}

.xb7-info-table,
.xb7-winners-table,
.xb7-content-body table,
.table-responsive .table,
.table {
    background: #141414 !important;
    color: #e8e8e8 !important;
}

.xb7-info-table thead,
.xb7-info-table thead tr,
.xb7-winners-table thead,
.xb7-winners-table thead tr,
.xb7-content-body table thead,
.xb7-content-body table thead tr,
.table thead,
.table thead tr {
    background: #111111 !important;
}

.xb7-info-table th,
.xb7-winners-table th,
.xb7-content-body table th,
.table th {
    background: #111111 !important;
    color: #00AEEF !important;
    border-color: #2a2a2a !important;
}

.xb7-info-table td,
.xb7-winners-table td,
.xb7-content-body table td,
.table td {
    background: #141414 !important;
    color: #e8e8e8 !important;
    border-color: #2a2a2a !important;
}

.xb7-info-table tbody tr,
.xb7-winners-table tbody tr,
.xb7-content-body table tbody tr,
.table tbody tr {
    background: #141414 !important;
}

.xb7-info-table tbody tr:nth-child(even) td,
.xb7-winners-table tbody tr:nth-child(even) td,
.xb7-content-body table tbody tr:nth-child(even) td,
.table tbody tr:nth-child(even) td {
    background: #181818 !important;
}

.xb7-info-table tbody tr:hover td,
.xb7-winners-table tbody tr:hover td,
.xb7-content-body table tbody tr:hover td,
.table tbody tr:hover td {
    background: #1d1d1d !important;
}