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

/* =========================================
   UNUSED STYLES FOR UNIQUALIZATION
   ========================================= */
.x7k2m {
    display: none;
}

.qp93r {
    visibility: hidden;
}

.zb41j {
    opacity: 0;
    pointer-events: none;
}

.wc88x {
    font-size: 0;
}

.mn55p {
    color: transparent;
}

.lq72t {
    height: 0;
    overflow: hidden;
}

/* WP-style unused references */
.wp-block-group__inner-container {
    display: block;
}

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

.entry-content {
    line-height: 1.6;
}

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

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

:root {
    --color-primary: #07498f;
    --color-dark: #002246;
    --color-btn-blue: #4690e0;
    --color-btn-orange: #fa5000;
    --color-text-light: #e8f0ff;
    --color-text-muted: #a8c0de;
    --color-card-bg: rgba(255, 255, 255, 0.06);
    --color-card-border: rgba(255, 255, 255, 0.12);
    --color-surface: rgba(7, 73, 143, 0.55);
    --font-main: 'Montserrat', sans-serif;
    --radius-card: 12px;
    --radius-btn: 8px;
    --transition: 0.25s ease;
    --header-h: linear-gradient(0deg, #07498f 0%, #002246 100%);
}

html {
    scroll-behavior: smooth;
    background: var(--color-primary);
}

body {
    font-family: var(--font-main);
    background: linear-gradient(180deg, #002246 0%, #07498f 40%, #05367a 100%);
    color: var(--color-text-light);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-btn-blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #74b3ff;
}

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

/* =========================================
   SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #002246;
}

::-webkit-scrollbar-thumb {
    background: var(--color-btn-blue);
    border-radius: 3px;
}

/* =========================================
   TYPOGRAPHY HELPERS
   ========================================= */
.mb2r {
    display: block;
}

.g3f8k {
    display: inline;
}

/* =========================================
   HEADER
   ========================================= */
.mb-header {
    background: var(--header-h);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
    padding: 0 16px;
}

.mb-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1260px;
    margin: 0 auto;
    height: 68px;
    gap: 16px;
}

.mb-header__logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.mb-header__nav {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.mb-header__nav a {
    color: var(--color-text-light);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.mb-header__nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

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

.mb-online-count {
    font-size: 11px;
    color: var(--color-text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mb-online-count__dot {
    width: 8px;
    height: 8px;
    background: #22e06a;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.55;
        transform: scale(1.35);
    }
}

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

.mb-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

.mb-burger.is-open span:nth-child(2) {
    opacity: 0;
}

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

.mb-mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--color-dark);
    padding: 12px 16px 16px;
    gap: 6px;
}

.mb-mobile-nav.is-open {
    display: flex;
}

.mb-mobile-nav a {
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid var(--color-card-border);
    transition: background var(--transition);
}

.mb-mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.09);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-mb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13px;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    padding: 9px 20px;
    text-decoration: none !important;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn-mb:hover {
    transform: translateY(-2px);
}

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

.btn-mb--blue {
    background: var(--color-btn-blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(70, 144, 224, 0.4);
}

.btn-mb--blue:hover {
    box-shadow: 0 6px 20px rgba(70, 144, 224, 0.6);
    filter: brightness(1.08);
    color: #fff;
}

.btn-mb--orange {
    background: var(--color-btn-orange);
    color: #fff;
    box-shadow: 0 4px 14px rgba(250, 80, 0, 0.4);
}

.btn-mb--orange:hover {
    box-shadow: 0 6px 20px rgba(250, 80, 0, 0.6);
    filter: brightness(1.08);
    color: #fff;
}

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

.btn-mb--sm {
    font-size: 12px;
    padding: 7px 14px;
}

.mb-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('/banner-cas-bet.jpg') center center / cover no-repeat;
}

.mb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 17, 51, 0.88) 0%, rgba(0, 34, 70, 0.6) 55%, rgba(7, 73, 143, 0.2) 100%);
    z-index: 1;
}

.mb-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1260px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
}

.mb-hero__badge {
    display: inline-block;
    background: var(--color-btn-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease both;
}

.mb-hero h1 {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    max-width: 600px;
    margin-bottom: 16px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.mb-hero__sub {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: 32px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.mb-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.mb-hero__bonus-note {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 12px;
    animation: fadeInUp 0.7s ease 0.4s both;
}

/* =========================================
   SECTION COMMONS
   ========================================= */
.mb-section {
    padding: 64px 16px;
}

.mb-section--alt {
    background: rgba(0, 17, 51, 0.35);
}

.mb-container {
    max-width: 1260px;
    margin: 0 auto;
}

.mb-section__title {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.mb-section__sub {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.mb-divider {
    width: 56px;
    height: 4px;
    background: var(--color-btn-orange);
    border-radius: 2px;
    margin: 10px auto 32px;
}

/* =========================================
   PROS & CONS
   ========================================= */
.mb-pros-cons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mb-pros-cons__col {
    flex: 1 1 280px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-card);
    padding: 24px;
    backdrop-filter: blur(8px);
}

.mb-pros-cons__col--pros {
    border-top: 3px solid #22e06a;
}

.mb-pros-cons__col--cons {
    border-top: 3px solid #ff4d4d;
}

.mb-pros-cons__head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.mb-pros-cons__head svg {
    flex-shrink: 0;
}

.mb-pros-cons__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mb-pros-cons__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.mb-pros-cons__list li::before {
    content: '';
    flex-shrink: 0;
    margin-top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: no-repeat center center;
    background-size: 10px;
}

.mb-pros-cons__col--pros .mb-pros-cons__list li::before {
    background-color: rgba(34, 224, 106, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2322e06a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.mb-pros-cons__col--cons .mb-pros-cons__list li::before {
    background-color: rgba(255, 77, 77, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23ff4d4d' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* =========================================
   TOURNAMENTS
   ========================================= */
.mb-tournaments-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mb-tournament-card {
    flex: 1 1 280px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-card);
    padding: 24px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.mb-tournament-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-btn-orange), var(--color-btn-blue));
}

.mb-tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.mb-tournament-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(250, 80, 0, 0.18);
    color: #fa7d2a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    width: fit-content;
}

.mb-tournament-card__name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.mb-tournament-card__desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.mb-tournament-card__prize {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-btn-orange);
}

.mb-tournament-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--color-card-border);
}

.mb-countdown {
    display: flex;
    gap: 6px;
    align-items: center;
}

.mb-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 4px 8px;
    min-width: 38px;
}

.mb-countdown__num {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.mb-countdown__label {
    font-size: 9px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mb-countdown__sep {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-btn-orange);
    padding-bottom: 8px;
}

/* Mobile slider for tournaments */
.mb-slider-wrap {
    position: relative;
}

/* =========================================
   APP INFO
   ========================================= */
.mb-app-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.mb-app-table-wrap {
    flex: 1 1 320px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mb-app-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 320px;
}

.mb-app-table th,
.mb-app-table td {
    text-align: left;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid var(--color-card-border);
}

.mb-app-table thead th {
    background: rgba(0, 17, 51, 0.5);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.mb-app-table tbody tr {
    transition: background var(--transition);
}

.mb-app-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.04);
}

.mb-app-table tbody tr:hover {
    background: rgba(70, 144, 224, 0.1);
}

.mb-app-table td:first-child {
    color: var(--color-text-muted);
    font-weight: 600;
}

.mb-app-table td:last-child {
    color: var(--color-text-light);
}

.mb-app-downloads {
    flex: 1 1 240px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mb-app-downloads__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.mb-dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid var(--color-card-border);
    background: var(--color-card-bg);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    backdrop-filter: blur(6px);
}

.mb-dl-btn:hover {
    background: rgba(70, 144, 224, 0.18);
    border-color: var(--color-btn-blue);
    transform: translateX(4px);
    color: #fff;
}

.mb-dl-btn svg {
    flex-shrink: 0;
}

.mb-dl-btn__sub {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* =========================================
   BONUSES
   ========================================= */
.mb-bonuses-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mb-bonus-card {
    flex: 1 1 280px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.mb-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.mb-bonus-card__icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 8px rgba(250, 80, 0, 0.4));
}

.mb-bonus-card__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-btn-orange);
}

.mb-bonus-card__title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.mb-bonus-card__amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-btn-orange);
    line-height: 1;
}

.mb-bonus-card__desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55;
    flex: 1;
}

/* =========================================
   WHEEL OF FORTUNE
   ========================================= */
.mb-wheel-section {
    text-align: center;
}

.mb-wheel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

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

#mb-wheel {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(70, 144, 224, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.08);
    display: block;
}

.mb-wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--color-btn-orange);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

#mb-spin-btn {
    min-width: 180px;
}

.mb-wheel-result {
    display: none;
    background: rgba(34, 224, 106, 0.1);
    border: 1px solid rgba(34, 224, 106, 0.3);
    border-radius: var(--radius-card);
    padding: 24px 32px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.4s ease both;
}

.mb-wheel-result.is-loss {
    background: rgba(255, 77, 77, 0.1);
    border-color: rgba(255, 77, 77, 0.3);
}

.mb-wheel-result__title {
    font-size: 22px;
    font-weight: 800;
    color: #22e06a;
    margin-bottom: 8px;
}

.mb-wheel-result.is-loss .mb-wheel-result__title {
    color: #ff6b6b;
}

.mb-wheel-result__text {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.55;
}

/* =========================================
   FAQ
   ========================================= */
.mb-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}

.mb-faq-item {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: border-color var(--transition);
}

.mb-faq-item.is-open {
    border-color: rgba(70, 144, 224, 0.4);
}

.mb-faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    user-select: none;
    transition: background var(--transition);
}

.mb-faq-item__q:hover {
    background: rgba(255, 255, 255, 0.04);
}

.mb-faq-item__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--color-btn-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition);
}

.mb-faq-item.is-open .mb-faq-item__icon {
    transform: rotate(45deg);
    background: var(--color-btn-blue);
}

.mb-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.65;
    padding: 0 20px;
}

.mb-faq-item.is-open .mb-faq-item__a {
    max-height: 400px;
    padding: 0 20px 18px;
}

/* =========================================
   CONTENT BLOCK (bare HTML content)
   ========================================= */
.mb-content-block {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text-light);
}

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

.mb-content-block h1 {
    font-size: 26px;
}

.mb-content-block h2 {
    font-size: 22px;
    border-bottom: 1px solid var(--color-card-border);
    padding-bottom: 8px;
}

.mb-content-block h3 {
    font-size: 18px;
    color: var(--color-text-light);
}

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

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

.mb-content-block ul,
.mb-content-block ol {
    margin: 0.8em 0 1em 1.4em;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mb-content-block ul li {
    list-style: disc;
}

.mb-content-block ol li {
    list-style: decimal;
}

.mb-content-block a {
    color: var(--color-btn-blue);
    text-decoration: underline;
}

.mb-content-block a:hover {
    color: #74b3ff;
}

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

.mb-content-block table th,
.mb-content-block table td {
    text-align: left;
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid var(--color-card-border);
}

.mb-content-block table thead th {
    background: rgba(0, 17, 51, 0.5);
    color: #fff;
    font-weight: 700;
}

.mb-content-block table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.04);
}

.mb-content-block blockquote {
    border-left: 3px solid var(--color-btn-orange);
    padding: 10px 16px;
    background: rgba(250, 80, 0, 0.08);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    margin: 1em 0;
}

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

.mb-content-block em {
    color: #bdd4f0;
}

.mb-content-block hr {
    border: none;
    border-top: 1px solid var(--color-card-border);
    margin: 1.6em 0;
}

/* =========================================
   AUTHOR BOX
   ========================================= */
.mb-author {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-card);
    padding: 20px;
    backdrop-filter: blur(8px);
    max-width: 700px;
    margin: 40px auto 0;
}

.mb-author__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-btn-blue);
    flex-shrink: 0;
}

.mb-author__name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.mb-author__bio {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.mb-author__link {
    font-size: 12px;
    color: var(--color-btn-blue);
    margin-top: 6px;
    display: inline-block;
}

/* =========================================
   FOOTER
   ========================================= */
.mb-footer {
    background: var(--header-h);
    padding: 48px 16px 24px;
    margin-top: 0;
}

.mb-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1260px;
    margin: 0 auto 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-card-border);
}

.mb-footer__logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.mb-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mb-footer__nav a {
    font-size: 13px;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.mb-footer__nav a:hover {
    color: #fff;
}

.mb-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.mb-footer__pay-badge,
.mb-footer__prov-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-card-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.mb-footer__providers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.mb-footer__bottom {
    max-width: 1260px;
    margin: 0 auto;
    text-align: center;
    font-size: 11px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.mb-footer__bottom strong {
    color: #9ab8d8;
}

.mb-footer__col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #fff;
    margin-bottom: 10px;
}

/* =========================================
   STICKY WIDGET
   ========================================= */
.mb-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #002246 0%, #07498f 100%);
    border-top: 2px solid var(--color-btn-orange);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.mb-sticky-widget__text {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.mb-sticky-widget__bonus {
    font-size: 13px;
    font-weight: 800;
    color: #ffd166;
}

.mb-sticky-widget__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition);
}

.mb-sticky-widget__close:hover {
    color: #fff;
}

/* =========================================
   MOBILE SLIDER
   ========================================= */
.mb-mobile-slider {
    overflow: hidden;
}

.mb-mobile-slider__track {
    display: flex;
    gap: 16px;
    transition: transform 0.35s ease;
}

.mb-mobile-slider__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.mb-mobile-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background var(--transition);
    border: none;
    padding: 0;
}

.mb-mobile-slider__dot.is-active {
    background: var(--color-btn-orange);
}

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

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

.mb-animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mb-animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   WP COMPATIBILITY STUBS (non-rendering)
   ========================================= */
.wp-caption {
    display: none;
}

.alignright {
    display: none;
}

.alignleft {
    display: none;
}

.wp-image-placeholder {
    display: none;
}

.elementor-widget-container {
    display: block;
}

.post-thumbnail {
    display: none;
}

.entry-meta {
    display: none;
}

.yoast-breadcrumb {
    display: none;
}

.widget-area {
    display: none;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
    .mb-header__nav {
        display: none;
    }

    .mb-burger {
        display: flex;
    }

    .mb-app-inner {
        flex-direction: column;
    }

    .mb-footer__top {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .mb-section {
        padding: 48px 12px;
    }

    .mb-hero {
        min-height: 380px;
    }

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

    .mb-tournaments-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .mb-tournament-card {
        flex: 0 0 84vw;
        scroll-snap-align: start;
    }

    .mb-bonuses-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .mb-bonus-card {
        flex: 0 0 84vw;
        scroll-snap-align: start;
    }

    #mb-wheel {
        width: 260px !important;
        height: 260px !important;
    }

    .mb-sticky-widget {
        gap: 8px;
        padding: 8px 36px 8px 12px;
    }

    .mb-sticky-widget__text {
        font-size: 12px;
    }

    .mb-sticky-widget__bonus {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .mb-hero h1 {
        font-size: 22px;
    }

    .mb-hero__sub {
        font-size: 14px;
    }

    .mb-section__title {
        font-size: 20px;
    }

    .mb-tournament-card {
        flex: 0 0 92vw;
    }

    .mb-bonus-card {
        flex: 0 0 92vw;
    }
}

.vgcsacs {
    max-width: 1260px;
    margin: 48px auto;
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    color: #e8f0ff;
}

.vgcsacs h1,
.vgcsacs h2,
.vgcsacs h3 {
    color: #fff;
    line-height: 1.25;
    margin: 0 0 18px;
}

.vgcsacs h1 {
    font-size: clamp(26px, 4vw, 44px);
}

.vgcsacs h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin-top: 34px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.vgcsacs p {
    font-size: 16px;
    line-height: 1.75;
    color: #c8ddf5;
    margin: 0 0 18px;
}

.vgcsacs a {
    color: #4690e0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.vgcsacs a:hover {
    color: #fa5000;
}

@media (max-width: 768px) {
    .vgcsacs {
        margin: 32px 12px;
        padding: 26px 20px;
        border-radius: 14px;
    }

    .vgcsacs p {
        font-size: 15px;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .vgcsacs {
        margin: 24px 10px;
        padding: 22px 16px;
        border-radius: 12px;
    }

    .vgcsacs h1 {
        font-size: 24px;
    }

    .vgcsacs h2 {
        font-size: 20px;
    }

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