* {

            box-sizing: border-box;

            margin: 0;

            padding: 0;

            -webkit-tap-highlight-color: transparent;

        }

        body {

            font-family: 'Poppins', sans-serif;

            background-color: #000000;

            color: #ffffff;

            line-height: 1.6;

            padding-bottom: 75px;

        }

        a {

            text-decoration: none;

            color: inherit;

        }

        /* 1. Top Black Header */

        .mb-header {

            background-color: #000000;

            position: sticky;

            top: 0;

            z-index: 1000;

            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);

            border-bottom: 1px solid #1f1f1f;

        }

        .mb-header-container {

            max-width: 1440px;

            margin: 0 auto;

            display: flex;

            align-items: center;

            justify-content: space-between;

            padding: 10px 20px;

        }

        .mb-logo img {

            height: 46px;

            width: auto;

            display: block;

            object-fit: contain;

        }

        .mb-nav {

            display: flex;

            align-items: center;

            gap: 22px;

        }

        .mb-nav-item {

            color: #ffffff;

            font-size: 14px;

            font-weight: 600;

            display: flex;

            align-items: center;

            gap: 5px;

            transition: color 0.2s ease;

            cursor: pointer;

            padding: 6px 0;

        }

        .mb-nav-item:hover {

            color: #e5a823;

        }

        .mb-nav-item svg {

            width: 12px;

            height: 12px;

            fill: currentColor;

        }

        .mb-auth-buttons {

            display: flex;

            align-items: center;

            gap: 12px;

        }

        .mb-btn-auth {

            background: linear-gradient(180deg, #f5c03f, #e5a823);

            color: #000000;

            font-weight: 700;

            font-size: 14px;

            padding: 8px 24px;

            border-radius: 6px;

            transition: all 0.2s ease;

            display: inline-block;

            box-shadow: 0 2px 8px rgba(229, 168, 35, 0.35);

        }

        .mb-btn-auth:hover {

            transform: translateY(-1px);

            background: linear-gradient(180deg, #ffd466, #f5c03f);

            box-shadow: 0 4px 14px rgba(229, 168, 35, 0.55);

        }

        /* 2. Top Layout for Sports &amp; Games (Light Grey BG) */

        .mb-top-section-bg {

            background-color: #f0f2f5;

            color: #222222;

            padding: 15px 0 25px 0;

        }

        .mb-main-layout {

            max-width: 1440px;

            margin: 0 auto;

            padding: 0 15px;

            display: flex;

            gap: 16px;

            align-items: flex-start;

            position: relative;

        }

        /* Left Sticky Sidebar */

        .mb-sidebar {

            width: 220px;

            background: #ffffff;

            border-radius: 8px;

            box-shadow: 0 2px 10px rgba(0,0,0,0.06);

            overflow: hidden;

            flex-shrink: 0;

            position: -webkit-sticky;

            position: sticky;

            top: 90px;

            max-height: calc(100vh - 100px);

            overflow-y: auto;

            z-index: 30;

        }

        .mb-sidebar::-webkit-scrollbar {

            width: 4px;

        }

        .mb-sidebar::-webkit-scrollbar-thumb {

            background: #ddd;

            border-radius: 4px;

        }

        .mb-sidebar-menu {

            list-style: none;

        }

        .mb-sidebar-item a {

            display: flex;

            align-items: center;

            padding: 11px 16px;

            font-size: 14px;

            font-weight: 600;

            color: #333333;

            border-bottom: 1px solid #f0f0f0;

            transition: all 0.2s ease;

            gap: 12px;

        }

        .mb-sidebar-item:last-child a {

            border-bottom: none;

        }

        .mb-sidebar-item a:hover {

            background-color: #fff9e6;

            color: #d49516;

            padding-left: 20px;

        }

        .mb-sidebar-item a svg {

            width: 18px;

            height: 18px;

            fill: #777777;

            flex-shrink: 0;

        }

        .mb-sidebar-item a:hover svg {

            fill: #d49516;

        }

        /* Center Content Column */

        .mb-center-content {

            flex: 1;

            min-width: 0;

            display: flex;

            flex-direction: column;

            gap: 20px;

        }

        /* Top 5 Sports Bar */

        .mb-sports-bar {

            display: grid;

            grid-template-columns: repeat(5, 1fr);

            gap: 10px;

        }

        .mb-sport-card {

            border-radius: 8px;

            overflow: hidden;

            box-shadow: 0 2px 6px rgba(0,0,0,0.08);

            transition: transform 0.2s ease, box-shadow 0.2s ease;

            display: block;

            background: #000;

            aspect-ratio: 5.85 / 1;

        }

        .mb-sport-card:hover {

            transform: translateY(-2px);

            box-shadow: 0 4px 12px rgba(0,0,0,0.15);

        }

        .mb-sport-card img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            display: block;

        }

        /* Feature Banners Grid (2x2) */

        .mb-feature-banners {

            display: grid;

            grid-template-columns: repeat(2, 1fr);

            gap: 12px;

        }

        .mb-feature-card {

            border-radius: 8px;

            overflow: hidden;

            box-shadow: 0 2px 6px rgba(0,0,0,0.08);

            transition: transform 0.2s ease;

            display: block;

            background: #000;

            aspect-ratio: 5.85 / 1;

        }

        .mb-feature-card:hover {

            transform: translateY(-2px);

            box-shadow: 0 4px 12px rgba(0,0,0,0.15);

        }

        .mb-feature-card img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            display: block;

        }

        /* Live Matches Table Section */

        .mb-matches-box {

            background: #ffffff;

            border-radius: 8px;

            box-shadow: 0 2px 8px rgba(0,0,0,0.06);

            overflow: hidden;

        }

        .mb-matches-header {

            background: #111111;

            color: #ffffff;

            padding: 10px 16px;

            display: flex;

            align-items: center;

            justify-content: space-between;

        }

        .mb-matches-title {

            font-size: 16px;

            font-weight: 700;

            display: flex;

            align-items: center;

            gap: 8px;

        }

        .mb-matches-title svg {

            width: 18px;

            height: 18px;

            fill: #e5a823;

        }

        .mb-matches-table {

            width: 100%;

            border-collapse: collapse;

        }

        .mb-match-row {

            border-bottom: 1px solid #f0f0f0;

            transition: background 0.15s ease;

        }

        .mb-match-row:hover {

            background: #fafafa;

        }

        .mb-match-row:last-child {

            border-bottom: none;

        }

        .mb-match-row td {

            padding: 12px 16px;

            vertical-align: middle;

        }

        .mb-match-teams {

            font-weight: 600;

            color: #111111;

            font-size: 14px;

            display: flex;

            align-items: center;

            gap: 10px;

        }

        .mb-match-status {

            display: flex;

            align-items: center;

            gap: 20px;

        }

        .mb-live-badge {

            color: #00875a;

            font-weight: 700;

            font-size: 12px;

            display: flex;

            align-items: center;

            gap: 6px;

        }

        .mb-live-badge::before {

            content: '';

            width: 7px;

            height: 7px;

            background: #00875a;

            border-radius: 50%;

            display: inline-block;

            animation: pulse 1.5s infinite;

        }

        @keyframes pulse {

            0% { opacity: 1; transform: scale(1); }

            50% { opacity: 0.4; transform: scale(1.3); }

            100% { opacity: 1; transform: scale(1); }

        }

        .mb-match-time {

            font-size: 12px;

            color: #555555;

            font-weight: 600;

        }

        .mb-match-actions {

            display: flex;

            align-items: center;

            gap: 12px;

        }

        .mb-btn-bet {

            background: #b7092b;

            color: #ffffff;

            font-size: 14px;

            font-weight: 700;

            padding: 6px 14px;

            border-radius: 4px;

            display: inline-block;

            transition: background 0.2s ease;

        }

        .mb-btn-bet:hover {

            background: #900621;

        }

        /* Section Title Wrappers */

        .mb-section-title-wrap {

            margin-top: 10px;

            margin-bottom: 12px;

            display: flex;

            align-items: center;

            justify-content: space-between;

        }

        .mb-section-title-wrap h3 {

            font-size: 17px;

            font-weight: 800;

            color: #111111;

            display: flex;

            align-items: center;

            gap: 8px;

        }

        .mb-view-all {

            font-size: 13px;

            font-weight: 600;

            color: #b7092b;

        }

        /* Casino 8-Card Grid (4 cols, 16:9) */

        .mb-casino-grid-4 {

            display: grid;

            grid-template-columns: repeat(4, 1fr);

            gap: 12px;

        }

        .mb-casino-card-169 {

            border-radius: 8px;

            overflow: hidden;

            box-shadow: 0 3px 8px rgba(0,0,0,0.1);

            background: #000;

            position: relative;

            aspect-ratio: 16 / 9;

            transition: transform 0.2s ease;

            display: block;

        }

        .mb-casino-card-169:hover {

            transform: translateY(-3px);

            box-shadow: 0 6px 14px rgba(0,0,0,0.18);

        }

        .mb-casino-card-169 img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            display: block;

        }

        /* Indian Card Games (2 cols, wide) */

        .mb-cards-grid-2 {

            display: grid;

            grid-template-columns: repeat(2, 1fr);

            gap: 12px;

        }

        .mb-card-item-wide {

            border-radius: 8px;

            overflow: hidden;

            box-shadow: 0 3px 8px rgba(0,0,0,0.1);

            background: #000;

            position: relative;

            aspect-ratio: 4.6 / 1;

            transition: transform 0.2s ease;

            display: block;

        }

        .mb-card-item-wide:hover {

            transform: translateY(-3px);

            box-shadow: 0 6px 14px rgba(0,0,0,0.18);

        }

        .mb-card-item-wide img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            display: block;

        }

        /* Providers / Lobbies (3 cols, 3:1) */

        .mb-lobbies-grid-3 {

            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 12px;

        }

        .mb-lobby-card {

            border-radius: 8px;

            overflow: hidden;

            box-shadow: 0 3px 8px rgba(0,0,0,0.1);

            background: #000;

            position: relative;

            aspect-ratio: 3 / 1;

            transition: transform 0.2s ease;

            display: block;

        }

        .mb-lobby-card:hover {

            transform: translateY(-3px);

            box-shadow: 0 6px 14px rgba(0,0,0,0.18);

        }

        .mb-lobby-card img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            display: block;

        }

        .mb-game-badge {

            position: absolute;

            top: 6px;

            right: 6px;

            background: #e5a823;

            color: #000;

            font-weight: 800;

            font-size: 10px;

            padding: 2px 6px;

            border-radius: 4px;

            z-index: 2;

        }

        /* =========================================

           DARK REFERENCE SECTIONS (MATCHED HEIGHT)

           ========================================= */

        /* Full Promo Banner */

        .mb-full-promo-banner {

            max-width: 1440px;

            margin: 30px auto 20px auto;

            padding: 0 15px;

        }

        .mb-full-promo-banner img {

            width: 100%;

            height: auto;

            border-radius: 10px;

            box-shadow: 0 6px 20px rgba(0,0,0,0.8);

            border: 1px solid #333;

            display: block;

        }

        /* Dark Two-Column Content Sections with Matched Height */

        .mb-dark-section {

            max-width: 1440px;

            margin: 45px auto;

            padding: 0 20px;

            display: flex;

            align-items: stretch;

            gap: 40px;

        }

        .mb-dark-section.reverse {

            flex-direction: row-reverse;

        }

        .mb-dark-col-text {

            flex: 1.1;

            display: flex;

            flex-direction: column;

            justify-content: center;

            gap: 16px;

        }

        .mb-dark-col-img {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 0;
        }

        .mb-gold-card-frame {
            border: 2px solid #e5a823;
            border-radius: 16px;
            padding: 8px;
            background: #000000;
            box-shadow: 0 6px 25px rgba(229, 168, 35, 0.2);
            width: 100%;
            max-width: 580px;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin: 0 auto;
        }

        .mb-gold-card-frame img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: contain;
            border-radius: 10px;
            display: block;
        }

        .mb-gold-badge {

            background: rgba(229, 168, 35, 0.12);

            border: 1px solid #e5a823;

            color: #e5a823;

            padding: 6px 14px;

            border-radius: 20px;

            font-size: 13px;

            font-weight: 700;

            display: inline-block;

            align-self: flex-start;

        }

        .mb-dark-heading {

            font-size: 28px;

            font-weight: 800;

            color: #e5a823;

            line-height: 1.3;

        }

        .mb-dark-desc {

            font-size: 14px;

            color: #d1d5db;

            line-height: 1.7;

        }

        .mb-dark-desc strong {

            color: #ffffff;

        }

        .mb-glowing-btn {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 8px;

            background: #000000;

            color: #ffffff;

            border: 2px solid #e5a823;

            box-shadow: 0 0 15px rgba(229, 168, 35, 0.4);

            border-radius: 8px;

            padding: 11px 26px;

            font-weight: 700;

            font-size: 14px;

            align-self: flex-start;

            transition: all 0.2s ease;

            margin-top: 6px;

        }

        .mb-glowing-btn:hover {

            transform: translateY(-2px);

            box-shadow: 0 0 25px rgba(229, 168, 35, 0.7);

            border-color: #ffd466;

            color: #e5a823;

        }

        .mb-glowing-btn svg {

            width: 16px;

            height: 16px;

            fill: #25d366;

        }

        /* Quick Stats Section */

        .mb-stats-section {

            max-width: 1440px;

            margin: 40px auto;

            padding: 0 20px;

        }

        .mb-stats-title-bar {

            background: #0a0a0a;

            border: 2px solid #e5a823;

            border-radius: 10px;

            padding: 12px 20px;

            text-align: center;

            color: #e5a823;

            font-size: 17px;

            font-weight: 800;

            letter-spacing: 0.5px;

            margin-bottom: 25px;

        }

        .mb-stats-grid {

            display: grid;

            grid-template-columns: repeat(4, 1fr);

            gap: 20px;

        }

        .mb-stat-circle-card {

            border: 2px solid #e5a823;

            border-radius: 14px;

            padding: 30px 15px;

            text-align: center;

            background: #0a0a0a;

            box-shadow: 0 4px 15px rgba(229, 168, 35, 0.15);

            transition: transform 0.2s ease;

        }

        .mb-stat-circle-card:hover {

            transform: translateY(-4px);

            box-shadow: 0 6px 20px rgba(229, 168, 35, 0.3);

        }

        .mb-stat-val {

            font-size: 28px;

            font-weight: 900;

            color: #e5a823;

            margin-bottom: 6px;

        }

        .mb-stat-lbl {

            font-size: 14px;

            font-weight: 600;

            color: #ffffff;

        }

        /* Premium Features Table Section (Under About Mahadev Book) */

        .mb-premium-features-section {

            max-width: 1440px;

            margin: 40px auto;

            padding: 0 20px;

        }

        .mb-premium-features-card {

            border: 2px solid #e5a823;

            border-radius: 12px;

            background: #080808;

            padding: 30px 25px;

            box-shadow: 0 4px 20px rgba(229, 168, 35, 0.15);

        }

        .mb-premium-features-title {

            color: #e5a823;

            font-weight: 800;

            font-size: 28px;

            letter-spacing: 2px;

            text-align: center;

            margin-bottom: 25px;

            text-shadow: 0 0 10px rgba(229, 168, 35, 0.4);

        }

        .mb-premium-table {

            width: 100%;

            border-collapse: collapse;

            border: 1px solid #555555;

            background: #000000;

        }

        .mb-premium-table tr {

            border-bottom: 1px solid #555555;

        }

        .mb-premium-table tr:last-child {

            border-bottom: none;

        }

        .mb-premium-label {

            width: 32%;

            padding: 13px 20px;

            color: #e5a823;

            font-weight: 700;

            font-size: 14px;

            letter-spacing: 0.5px;

            border-right: 1px solid #555555;

            vertical-align: middle;

        }

        .mb-premium-label::before {

            content: '● ';

            color: #e5a823;

            margin-right: 6px;

            font-size: 12px;

        }

        .mb-premium-val {

            padding: 13px 20px;

            color: #ffffff;

            font-weight: 500;

            font-size: 14.5px;

            vertical-align: middle;

        }

        /* Center Hero Section */

        .mb-centered-hero-section {

            max-width: 1100px;

            margin: 50px auto 30px auto;

            padding: 0 20px;

            text-align: center;

            display: flex;

            flex-direction: column;

            align-items: center;

            gap: 16px;

        }

        .mb-centered-hero-title {

            font-size: 28px;

            font-weight: 800;

            color: #e5a823;

            line-height: 1.3;

        }

        .mb-centered-subheading {

            font-size: 17px;

            font-weight: 700;

            color: #ffffff;

            margin-top: 10px;

        }

        /* 3 Steps Guide */

        .mb-steps-list {

            display: flex;

            flex-direction: column;

            gap: 10px;

            margin: 6px 0;

        }

        .mb-step-row-item {

            display: flex;

            align-items: center;

            gap: 12px;

            background: #0d0d0d;

            border: 1px solid #222;

            padding: 8px 14px;

            border-radius: 8px;

        }

        .mb-step-pill-num {

            background: #e5a823;

            color: #000000;

            font-weight: 900;

            font-size: 13px;

            width: 24px;

            height: 24px;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            flex-shrink: 0;

        }

        .mb-step-row-text {

            font-size: 14px;

            font-weight: 600;

            color: #ffffff;

        }

        /* Yellow Full-Width Verification Banner */

        .mb-yellow-verification-section {

            background: #e5a823;

            color: #000000;

            padding: 40px 20px;

            margin: 45px 0;

        }

        .mb-yellow-inner {

            max-width: 1100px;

            margin: 0 auto;

            text-align: center;

            display: flex;

            flex-direction: column;

            align-items: center;

            gap: 16px;

        }

        .mb-yellow-heading {

            font-size: 28px;

            font-weight: 800;

            color: #000000;

        }

        .mb-yellow-desc {

            font-size: 14px;

            color: #111111;

            line-height: 1.7;

        }

        /* Why Best Choice 6-Grid */

        .mb-why-section {

            max-width: 1440px;

            margin: 50px auto 30px auto;

            padding: 0 20px;

            text-align: center;

        }

        .mb-why-heading {

            font-size: 28px;

            font-weight: 800;

            color: #e5a823;

            margin-bottom: 10px;

        }

        .mb-why-sub {

            font-size: 14px;

            color: #d1d5db;

            margin-bottom: 30px;

            max-width: 900px;

            margin-left: auto;

            margin-right: auto;

        }

        .mb-why-grid {

            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 18px;

        }

        .mb-why-card {

            border: 2px solid #e5a823;

            border-radius: 12px;

            padding: 24px 18px;

            background: #080808;

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: center;

            gap: 12px;

            box-shadow: 0 4px 15px rgba(229, 168, 35, 0.1);

            transition: transform 0.2s ease;

        }

        .mb-why-card:hover {

            transform: translateY(-3px);

            box-shadow: 0 6px 20px rgba(229, 168, 35, 0.25);

        }

        .mb-why-icon {

            font-size: 28px;

        }

        .mb-why-text {

            font-size: 14px;

            font-weight: 600;

            color: #ffffff;

            line-height: 1.4;

        }

        /* ============================================================

           DOWN SECTIONS (UNDER "WHY MAHADEV BOOK IS THE BEST CHOICE")

           ============================================================ */

        /* 1. 6 ID Platform Cards Grid (2 rows of 3) */

        .mb-id-cards-grid {

            max-width: 1440px;

            margin: 40px auto;

            padding: 0 20px;

            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 24px;

        }

        .mb-id-card {

            border: 2px solid #e5a823;

            border-radius: 14px;

            padding: 22px 20px;

            background: #080808;

            display: flex;

            flex-direction: column;

            justify-content: space-between;

            box-shadow: 0 4px 15px rgba(229, 168, 35, 0.1);

            transition: transform 0.2s ease, box-shadow 0.2s ease;

        }

        .mb-id-card:hover {

            transform: translateY(-3px);

            box-shadow: 0 6px 20px rgba(229, 168, 35, 0.25);

        }

        .mb-id-card-title {

            border: 2px solid #e5a823;

            border-radius: 8px;

            padding: 9px 12px;

            text-align: center;

            color: #e5a823;

            font-weight: 700;

            font-size: 14px;

            margin-bottom: 16px;

            background: rgba(229, 168, 35, 0.05);

            line-height: 1.35;

        }

        .mb-id-card-body {

            font-size: 14px;

            color: #d1d5db;

            line-height: 1.65;

            margin-bottom: 20px;

            flex-grow: 1;

        }

        .mb-id-card-body p {

            margin-bottom: 10px;

        }

        .mb-id-card-body strong {

            color: #ffffff;

        }

        .mb-id-card-body ul {

            list-style: none;

            padding: 0;

            margin: 12px 0;

        }

        .mb-id-card-body ul li {

            position: relative;

            padding-left: 0;

            margin-bottom: 6px;

            color: #d1d5db;

        }

        .mb-id-btn {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 8px;

            background: #000000;

            color: #ffffff;

            border: 1.5px solid #a855f7;

            box-shadow: 0 0 10px rgba(168, 85, 247, 0.4), 0 0 5px rgba(34, 197, 94, 0.3);

            border-radius: 8px;

            padding: 10px 18px;

            font-weight: 700;

            font-size: 14px;

            text-align: center;

            transition: all 0.2s ease;

            width: fit-content;

            margin-top: auto;

        }

        .mb-id-btn:hover {

            transform: translateY(-2px);

            box-shadow: 0 0 16px rgba(168, 85, 247, 0.7);

            border-color: #c084fc;

        }

        .mb-id-btn svg {

            width: 16px;

            height: 16px;

            fill: #25d366;

            flex-shrink: 0;

        }

        /* 2. "Why Choose Mahadev Book —for Betting IDs?" */

        .mb-why-choose-card {

            max-width: 1440px;

            margin: 40px auto;

            padding: 35px 24px;

            border: 2px solid #e5a823;

            border-radius: 14px;

            background: #080808;

            text-align: center;

            box-shadow: 0 4px 20px rgba(229, 168, 35, 0.15);

            box-sizing: border-box;

            width: calc(100% - 40px);

        }

        .mb-why-choose-header {

            border: 2px solid #e5a823;

            border-radius: 8px;

            padding: 10px 24px;

            display: inline-block;

            color: #e5a823;

            font-size: 18px;

            font-weight: 800;

            margin-bottom: 25px;

            background: rgba(229, 168, 35, 0.08);

            max-width: 100%;

        }

        .mb-why-checklist {

            display: flex;

            flex-direction: column;

            align-items: center;

            gap: 10px;

            margin-bottom: 22px;

            font-size: 15px;

            color: #ffffff;

            font-weight: 600;

        }

        .mb-why-checklist-item {

            display: flex;

            align-items: center;

            gap: 8px;

        }

        .mb-why-choose-sub {

            font-size: 14px;

            color: #cccccc;

            margin-bottom: 25px;

        }

        .mb-why-choose-sub strong {

            color: #ffffff;

        }

        .mb-why-choose-btn {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 10px;

            background: #000000;

            color: #ffffff;

            border: 2px solid #ec4899;

            box-shadow: 0 0 15px rgba(236, 72, 153, 0.5), 0 0 5px rgba(229, 168, 35, 0.3);

            border-radius: 8px;

            padding: 12px 28px;

            font-weight: 700;

            font-size: 14px;

            transition: all 0.2s ease;

        }

        .mb-why-choose-btn:hover {

            transform: translateY(-2px);

            box-shadow: 0 0 22px rgba(236, 72, 153, 0.85);

            border-color: #f472b6;

        }

        .mb-why-choose-btn svg {

            width: 18px;

            height: 18px;

            fill: #25d366;

            flex-shrink: 0;

        }

        /* 3. Mahadev Book —Account Access Section */

        .mb-account-access-section {

            max-width: 1440px;

            margin: 45px auto;

            padding: 0 20px;

        }

        .mb-account-access-header {

            border: 2px solid #e5a823;

            border-radius: 8px;

            padding: 10px 20px;

            text-align: center;

            color: #e5a823;

            font-size: 17px;

            font-weight: 700;

            margin-bottom: 20px;

            background: rgba(229, 168, 35, 0.05);

        }

        .mb-account-access-desc {

            font-size: 14px;

            color: #cccccc;

            line-height: 1.7;

            text-align: center;

            margin-bottom: 30px;

            max-width: 1100px;

            margin-left: auto;

            margin-right: auto;

        }

        .mb-account-access-desc strong {

            color: #ffffff;

        }

        .mb-account-access-desc strong.highlight {

            color: #e5a823;

        }

        .mb-account-access-grid {

            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 24px;

        }

        .mb-access-card {

            border: 2px solid #e5a823;

            border-radius: 14px;

            padding: 22px 20px;

            background: #080808;

            box-shadow: 0 4px 15px rgba(229, 168, 35, 0.1);

        }

        .mb-access-card-title {

            border: 2px solid #e5a823;

            border-radius: 8px;

            padding: 9px 12px;

            text-align: center;

            color: #e5a823;

            font-weight: 700;

            font-size: 16px;

            margin-bottom: 18px;

            background: rgba(229, 168, 35, 0.05);

        }

        .mb-access-steps {

            font-size: 13.5px;

            color: #d1d5db;

            line-height: 1.65;

        }

        .mb-access-steps ol {

            padding-left: 18px;

            margin: 0;

        }

        .mb-access-steps li {

            margin-bottom: 12px;

        }

        /* 4. Full-Width Yellow "How Mahadev Books Works" */

        .mb-how-it-works-section {

            width: 100%;

            background-color: #f5a623;

            padding: 55px 20px;

            margin: 50px 0;

            color: #000000;

        }

        .mb-how-it-works-container {

            max-width: 1440px;

            margin: 0 auto;

            display: flex;

            align-items: center;

            gap: 45px;

        }

        .mb-how-it-works-text {

            flex: 1.1;

            display: flex;

            flex-direction: column;

            gap: 16px;

        }

        .mb-how-it-works-text h2 {

            font-size: 28px;

            font-weight: 800;

            color: #000000;

            line-height: 1.25;

        }

        .mb-how-it-works-text p {

            font-size: 14px;

            color: #1a1a1a;

            line-height: 1.7;

        }

        .mb-how-it-works-btn {

            display: inline-flex;

            align-items: center;

            gap: 10px;

            background: #000000;

            color: #ffffff;

            border: 2px solid #22c55e;

            box-shadow: 0 0 15px rgba(34, 197, 94, 0.6), 0 0 5px rgba(168, 85, 247, 0.4);

            border-radius: 8px;

            padding: 12px 28px;

            font-weight: 700;

            font-size: 14px;

            transition: all 0.2s ease;

            margin-top: 10px;

            width: fit-content;

        }

        .mb-how-it-works-btn:hover {

            transform: translateY(-2px);

            box-shadow: 0 0 22px rgba(34, 197, 94, 0.9);

        }

        .mb-how-it-works-btn svg {

            width: 18px;

            height: 18px;

            fill: #25d366;

            flex-shrink: 0;

        }

        .mb-how-it-works-img {

            flex: 1;

        }

        .mb-how-it-works-img img {

            width: 100%;

            height: auto;

            border-radius: 12px;

            box-shadow: 0 8px 25px rgba(0,0,0,0.4);

            border: 2px solid #000000;

            display: block;

        }

        /* 5. Two Column Cards (Betting Categories &amp; Key Features) */

        .mb-two-cards-grid {

            max-width: 1440px;

            margin: 45px auto;

            padding: 0 20px;

            display: grid;

            grid-template-columns: repeat(2, 1fr);

            gap: 25px;

        }

        .mb-feature-col-card {

            border: 2px solid #e5a823;

            border-radius: 14px;

            padding: 24px 22px;

            background: #080808;

            display: flex;

            flex-direction: column;

            justify-content: space-between;

            box-shadow: 0 4px 15px rgba(229, 168, 35, 0.1);

        }

        .mb-feature-col-title {

            border: 2px solid #e5a823;

            border-radius: 8px;

            padding: 10px 14px;

            text-align: center;

            color: #e5a823;

            font-weight: 700;

            font-size: 16px;

            margin-bottom: 18px;

            background: rgba(229, 168, 35, 0.05);

        }

        .mb-feature-col-body {

            font-size: 14px;

            color: #d1d5db;

            line-height: 1.7;

            margin-bottom: 20px;

            flex-grow: 1;

        }

        .mb-feature-col-body p {

            margin-bottom: 10px;

        }

        .mb-feature-col-body strong {

            color: #ffffff;

        }

        .mb-feature-col-body ul {

            list-style: none;

            padding: 0;

            margin: 12px 0;

        }

        .mb-feature-col-body ul li {

            position: relative;

            padding-left: 14px;

            margin-bottom: 8px;

            color: #d1d5db;

        }

        .mb-feature-col-body ul li::before {

            content: '•';

            position: absolute;

            left: 0;

            color: #e5a823;

            font-size: 16px;

            line-height: 1;

        }

        .mb-neon-btn-green {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 8px;

            background: #000000;

            color: #ffffff;

            border: 1.5px solid #22c55e;

            box-shadow: 0 0 12px rgba(34, 197, 94, 0.5), 0 0 5px rgba(168, 85, 247, 0.4);

            border-radius: 8px;

            padding: 11px 22px;

            font-weight: 700;

            font-size: 14px;

            text-align: center;

            transition: all 0.2s ease;

            width: fit-content;

            margin-top: auto;

        }

        .mb-neon-btn-green:hover {

            transform: translateY(-2px);

            box-shadow: 0 0 18px rgba(34, 197, 94, 0.85);

            border-color: #4ade80;

        }

        .mb-neon-btn-blue {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 8px;

            background: #000000;

            color: #ffffff;

            border: 1.5px solid #3b82f6;

            box-shadow: 0 0 12px rgba(59, 130, 246, 0.5), 0 0 5px rgba(168, 85, 247, 0.4);

            border-radius: 8px;

            padding: 11px 22px;

            font-weight: 700;

            font-size: 14px;

            text-align: center;

            transition: all 0.2s ease;

            width: fit-content;

            margin-top: auto;

        }

        .mb-neon-btn-blue:hover {

            transform: translateY(-2px);

            box-shadow: 0 0 18px rgba(59, 130, 246, 0.85);

            border-color: #60a5fa;

        }

        /* Fixed Bottom Sticky Bar */

        .mb-bottom-offer-bar {

            position: fixed;

            bottom: 0;

            left: 0;

            right: 0;

            background: #000000;

            border-top: 1px solid #333333;

            padding: 12px 20px;

            z-index: 999;

            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.8);

        }

        .mb-offer-inner {

            max-width: 1440px;

            margin: 0 auto;

            display: flex;

            align-items: center;

            justify-content: space-between;

        }

        .mb-offer-text {

            color: #ffffff;

            font-size: 15px;

            font-weight: 700;

        }

        .mb-offer-btn {

            background: #000000;

            color: #ffffff;

            font-weight: 700;

            font-size: 14px;

            padding: 8px 28px;

            border-radius: 6px;

            border: 1.5px solid #a855f7;

            box-shadow: 0 0 10px rgba(168, 85, 247, 0.5), 0 0 5px rgba(34, 197, 94, 0.4);

            transition: all 0.2s ease;

        }

        .mb-offer-btn:hover {

            box-shadow: 0 0 18px rgba(168, 85, 247, 0.8);

            border-color: #c084fc;

        }

        /* Floating WhatsApp Button */

        .mb-floating-whatsapp {

            position: fixed;

            bottom: 90px;

            right: 20px;

            background: #25d366;

            color: #ffffff;

            font-size: 14px;

            font-weight: 700;

            display: flex;

            align-items: center;

            gap: 8px;

            padding: 10px 18px;

            border-radius: 30px;

            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);

            z-index: 99999;

            transition: transform 0.2s ease, box-shadow 0.2s ease;

        }

        .mb-floating-whatsapp:hover {

            transform: scale(1.05);

            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.65);

        }

        .mb-floating-whatsapp svg {

            width: 20px;

            height: 20px;

            fill: #ffffff;

        }

        /* Responsive Breakpoints */

        @media (max-width: 1100px) {

            .mb-stats-grid {

                grid-template-columns: repeat(2, 1fr);

            }

            .mb-id-cards-grid {

                grid-template-columns: repeat(2, 1fr);

            }

            .mb-account-access-grid {

                grid-template-columns: repeat(2, 1fr);

            }

            .mb-why-grid {

                grid-template-columns: repeat(2, 1fr);

            }

            .mb-two-cards-grid {

                grid-template-columns: 1fr;

            }

        }

        @media (max-width: 900px) {

            .mb-sidebar {

                display: none;

            }

            .mb-sports-bar {

                grid-template-columns: repeat(3, 1fr);

            }

            .mb-casino-grid-4 {

                grid-template-columns: repeat(2, 1fr);

            }

            .mb-lobbies-grid-3 {

                grid-template-columns: repeat(2, 1fr);

            }

            .mb-dark-section, .mb-dark-section.reverse {

                flex-direction: column;

                gap: 25px;

            }

            .mb-gold-card-frame img {

                min-height: 220px;

            }

            .mb-id-cards-grid {

                grid-template-columns: 1fr;

            }

            .mb-account-access-grid {

                grid-template-columns: 1fr;

            }

            .mb-how-it-works-container {

                flex-direction: column;

                gap: 25px;

            }

            .mb-why-grid {

                grid-template-columns: 1fr;

            }

            .mb-premium-label {

                width: 40%;

                padding: 10px 12px;

                font-size: 12.5px;

            }

            .mb-premium-val {

                padding: 10px 12px;

                font-size: 13px;

            }

        }

        @media (max-width: 600px) {

            .mb-nav {

                display: none;

            }

            .mb-sports-bar {

                grid-template-columns: repeat(2, 1fr);

            }

            .mb-feature-banners {

                grid-template-columns: 1fr;

            }

            .mb-casino-grid-4 {

                grid-template-columns: 1fr;

            }

            .mb-cards-grid-2 {

                grid-template-columns: 1fr;

            }

            .mb-lobbies-grid-3 {

                grid-template-columns: 1fr;

            }

            .mb-stats-grid {

                grid-template-columns: 1fr;

            }

            .mb-offer-inner {

                flex-direction: column;

                gap: 8px;

                text-align: center;

            }

        }

        /* Sports to Bet On Section */

        .mb-sports-bet-section {

            max-width: 1440px;

            margin: 40px auto 20px auto;

            padding: 0 20px;

            text-align: center;

        }

        .mb-sports-bet-title {

            font-size: 28px;

            font-weight: 800;

            color: #e5a823;

            margin-bottom: 8px;

        }

        .mb-sports-bet-sub {

            font-size: 15px;

            color: #cccccc;

            margin-bottom: 30px;

        }

        .mb-sports-bet-grid {

            display: grid;

            grid-template-columns: repeat(5, 1fr);

            gap: 16px;

        }

        .mb-sports-bet-card {

            background: #f5c03f;

            color: #000000;

            border-radius: 8px;

            padding: 24px 14px;

            text-align: center;

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: flex-start;

            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);

            transition: transform 0.2s ease, box-shadow 0.2s ease;

        }

        .mb-sports-bet-card:hover {

            transform: translateY(-4px);

            box-shadow: 0 6px 20px rgba(245, 192, 63, 0.4);

        }

        .mb-sports-bet-icon {

            font-size: 36px;

            height: 48px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 8px;

        }

        .mb-sports-bet-name {

            font-size: 16px;

            font-weight: 800;

            color: #000000;

            margin-bottom: 8px;

        }

        .mb-sports-bet-desc {

            font-size: 14px;

            color: #222222;

            font-weight: 500;

            line-height: 1.45;

        }

        @media (max-width: 1100px) {

            .mb-sports-bet-grid {

                grid-template-columns: repeat(3, 1fr);

            }

        }

        @media (max-width: 650px) {

            .mb-sports-bet-grid {

                grid-template-columns: repeat(2, 1fr);

            }

        }

        @media (max-width: 420px) {

            .mb-sports-bet-grid {

                grid-template-columns: 1fr;

            }

        }

        /* Casino Games Offered by Mahadev Book —Section */

        .mb-casino-offered-section {

            max-width: 1440px;

            margin: 45px auto;

            padding: 0 20px;

        }

        .mb-casino-offered-header {

            border: 2px solid #e5a823;

            border-radius: 8px;

            padding: 10px 20px;

            text-align: center;

            color: #e5a823;

            font-size: 17px;

            font-weight: 700;

            margin-bottom: 20px;

            background: rgba(229, 168, 35, 0.05);

        }

        .mb-casino-offered-sub {

            font-size: 14px;

            color: #cccccc;

            line-height: 1.6;

            text-align: center;

            margin-bottom: 30px;

        }

        .mb-casino-offered-grid {

            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 20px;

        }

        .mb-casino-gold-box {

            border: 2px solid #e5a823;

            border-radius: 6px;

            background: #000000;

            padding: 24px 15px;

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: center;

            text-align: center;

            min-height: 150px;

            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);

            transition: transform 0.2s ease, box-shadow 0.2s ease;

        }

        .mb-casino-gold-box:hover {

            transform: translateY(-3px);

            box-shadow: 0 6px 20px rgba(229, 168, 35, 0.25);

        }

        .mb-casino-box-icon {

            font-size: 44px;

            height: 52px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 12px;

        }

        .mb-casino-box-title {

            font-size: 16px;

            font-weight: 700;

            color: #ffffff;

        }

        .mb-casino-playnow-box {

            background: #3b5998;

            border-radius: 6px;

            display: flex;

            align-items: center;

            justify-content: center;

            padding: 20px;

            min-height: 150px;

            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);

            transition: transform 0.2s ease, background 0.2s ease;

        }

        .mb-casino-playnow-box:hover {

            transform: translateY(-3px);

            background: #2d4373;

        }

        .mb-casino-playnow-btn {

            border: 1.5px solid #e5a823;

            color: #e5a823;

            background: transparent;

            font-size: 14px;

            font-weight: 700;

            padding: 10px 28px;

            border-radius: 4px;

            display: inline-block;

            text-decoration: none;

            transition: all 0.2s ease;

        }

        .mb-casino-playnow-box:hover .mb-casino-playnow-btn {

            background: #e5a823;

            color: #000000;

        }

        .mb-casino-offered-footer {

            font-size: 14px;

            color: #cccccc;

            text-align: center;

            margin-top: 30px;

        }

        @media (max-width: 900px) {

            .mb-casino-offered-grid {

                grid-template-columns: repeat(2, 1fr);

            }

        }

        @media (max-width: 550px) {

            .mb-casino-offered-grid {

                grid-template-columns: 1fr;

            }

        }

        /* Promotions and Bonuses Section */

        .mb-promo-bonuses-section {

            max-width: 1440px;

            margin: 50px auto 40px auto;

            padding: 0 20px;

            text-align: center;

        }

        .mb-promo-bonuses-title {

            font-size: 28px;

            font-weight: 800;

            color: #e5a823;

            margin-bottom: 8px;

        }

        .mb-promo-bonuses-sub {

            font-size: 15px;

            color: #cccccc;

            margin-bottom: 30px;

        }

        .mb-promo-bonuses-grid {

            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 20px;

        }

        .mb-promo-card {

            background: #f5c03f;

            color: #000000;

            border-radius: 12px;

            padding: 28px 20px;

            text-align: center;

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: flex-start;

            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);

            transition: transform 0.2s ease, box-shadow 0.2s ease;

        }

        .mb-promo-card:hover {

            transform: translateY(-4px);

            box-shadow: 0 6px 20px rgba(245, 192, 63, 0.4);

        }

        .mb-promo-card-icon {

            font-size: 40px;

            height: 52px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 12px;

        }

        .mb-promo-card-title {

            font-size: 16px;

            font-weight: 800;

            color: #000000;

            margin-bottom: 12px;

            line-height: 1.35;

        }

        .mb-promo-card-desc {

            font-size: 14px;

            color: #1a1a1a;

            font-weight: 500;

            line-height: 1.55;

            text-align: left;

        }

        @media (max-width: 992px) {

            .mb-promo-bonuses-grid {

                grid-template-columns: repeat(2, 1fr);

            }

        }

        @media (max-width: 600px) {

            .mb-promo-bonuses-grid {

                grid-template-columns: 1fr;

            }

        }

        /* Full-Width Yellow App Section */

        .mb-yellow-app-section {

            background-color: #f5c03f;

            color: #000000;

            padding: 60px 20px;

            margin: 50px 0;

            width: 100%;

        }

        .mb-yellow-app-container {

            max-width: 1440px;

            margin: 0 auto;

            display: flex;

            align-items: stretch;

            gap: 40px;

        }

        .mb-yellow-app-col-img {

            flex: 1;

            display: flex;

            align-items: stretch;

            justify-content: center;

        }

        .mb-yellow-app-col-img img {

            width: 100%;

            max-width: 580px;

            height: 100%;

            object-fit: cover;

            border-radius: 12px;

            box-shadow: 0 8px 30px rgba(0,0,0,0.3);

            display: block;

        }

        .mb-yellow-app-col-text {

            flex: 1.1;

            display: flex;

            flex-direction: column;

            gap: 12px;

        }

        .mb-yellow-app-title {

            font-size: 28px;

            font-weight: 900;

            color: #000000;

            line-height: 1.25;

            margin: 0;

        }

        .mb-yellow-app-subtitle {

            font-size: 17px;

            font-weight: 800;

            color: #000000;

            margin: 0 0 8px 0;

            letter-spacing: 0.5px;

        }

        .mb-yellow-app-rating {

            font-size: 15px;

            color: #111111;

            margin: 0;

        }

        .mb-yellow-app-rating strong {

            font-weight: 800;

            color: #000000;

        }

        .mb-yellow-app-bonus {

            font-size: 15px;

            font-style: italic;

            font-weight: 700;

            color: #000000;

            margin: 4px 0;

        }

        .mb-yellow-app-desc {

            font-size: 14px;

            color: #222222;

            line-height: 1.6;

            margin: 0;

        }

        .mb-yellow-app-desc strong {

            font-weight: 800;

            color: #000000;

        }

        .mb-yellow-app-features-title {

            font-size: 16px;

            font-weight: 800;

            color: #000000;

            margin: 10px 0 4px 0;

        }

        .mb-yellow-app-list {

            list-style: none;

            padding: 0;

            margin: 0;

            display: flex;

            flex-direction: column;

            gap: 8px;

        }

        .mb-yellow-app-list li {

            font-size: 14px;

            font-weight: 700;

            color: #111111;

            position: relative;

            padding-left: 18px;

            line-height: 1.4;

        }

        .mb-yellow-app-list li::before {

            content: "•";

            position: absolute;

            left: 0;

            top: -1px;

            font-size: 18px;

            color: #000000;

        }

        .mb-yellow-app-btn {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 10px;

            background: #000000;

            color: #ffffff;

            border: 2px solid #25d366;

            box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);

            border-radius: 8px;

            padding: 12px 28px;

            font-weight: 700;

            font-size: 14px;

            text-decoration: none;

            width: fit-content;

            margin-top: 12px;

            transition: all 0.2s ease;

        }

        .mb-yellow-app-btn:hover {

            transform: translateY(-2px);

            box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);

            background: #111111;

            color: #ffffff;

        }

        .mb-yellow-app-btn svg {

            width: 18px;

            height: 18px;

            fill: #25d366;

            flex-shrink: 0;

        }

        @media (max-width: 992px) {

            .mb-yellow-app-container {

                flex-direction: column;

                text-align: center;

            }

            .mb-yellow-app-col-text {

                align-items: center;

            }

            .mb-yellow-app-list {

                text-align: left;

            }

        }

        /* =========================================

           FIVE NEW SECTIONS DOWN TRUSTED SECTION

           ========================================= */

        /* 1. News &amp; Insights Blog Grid */

        .mb-insights-section {

            max-width: 1440px;

            margin: 50px auto 40px auto;

            padding: 0 20px;

            text-align: center;

        }

        .mb-insights-grid {

            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 24px;

            margin-bottom: 25px;

            text-align: left;

        }

        .mb-insight-card {

            background: #ffffff;

            border-radius: 12px;

            overflow: hidden;

            box-shadow: 0 4px 15px rgba(0,0,0,0.3);

            display: flex;

            flex-direction: column;

            transition: transform 0.2s ease, box-shadow 0.2s ease;

        }

        .mb-insight-card:hover {

            transform: translateY(-4px);

            box-shadow: 0 8px 25px rgba(0,0,0,0.5);

        }

        .mb-insight-img-wrap {

            width: 100%;

            aspect-ratio: 16 / 9;

            overflow: hidden;

            background: #000000;

        }

        .mb-insight-img-wrap img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            display: block;

        }

        .mb-insight-content {

            padding: 18px 16px;

            display: flex;

            flex-direction: column;

            flex: 1;

        }

        .mb-insight-title {

            font-size: 15px;

            font-weight: 800;

            color: #000000;

            line-height: 1.4;

            margin-bottom: 8px;

        }

        .mb-insight-date {

            font-size: 12px;

            color: #e11d48;

            font-weight: 600;

            margin-bottom: 12px;

        }

        .mb-insight-link {

            font-size: 13px;

            font-weight: 700;

            color: #111111;

            text-decoration: none;

            margin-top: auto;

            display: inline-block;

        }

        .mb-insight-link:hover {

            color: #e5a823;

        }

        .mb-insights-btn {

            display: inline-block;

            background: #000000;

            color: #ffffff;

            border: 2px solid #8b5cf6;

            box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);

            border-radius: 8px;

            padding: 10px 24px;

            font-weight: 700;

            font-size: 14px;

            text-decoration: none;

            transition: all 0.2s ease;

            margin-top: 10px;

        }

        .mb-insights-btn:hover {

            box-shadow: 0 0 25px rgba(139, 92, 246, 0.7);

            border-color: #a78bfa;

            color: #ffffff;

        }

        /* 2 &amp; 4: Yellow Full-Width Sections (Withdraw &amp; Support) */

        .mb-yellow-full-section {

            background-color: #f5c03f;

            color: #000000;

            padding: 60px 20px;

            margin: 50px 0;

            width: 100%;

        }

        .mb-yellow-full-container {

            max-width: 1440px;

            margin: 0 auto;

            display: flex;

            align-items: stretch;

            gap: 40px;

        }

        .mb-yellow-full-container.reverse {

            flex-direction: row-reverse;

        }

        .mb-yellow-col-img {

            flex: 1;

            display: flex;

            align-items: stretch;

            justify-content: center;

        }

        .mb-yellow-col-img img {

            width: 100%;

            max-width: 580px;

            height: 100%;

            object-fit: cover;

            border-radius: 12px;

            box-shadow: 0 8px 30px rgba(0,0,0,0.3);

            display: block;

        }

        .mb-yellow-col-text {

            flex: 1.1;

            display: flex;

            flex-direction: column;

            gap: 12px;

        }

        .mb-yellow-title {

            font-size: 28px;

            font-weight: 900;

            color: #000000;

            line-height: 1.25;

            margin: 0;

        }

        .mb-yellow-desc {

            font-size: 14px;

            color: #222222;

            line-height: 1.6;

            margin: 0;

        }

        .mb-yellow-ol {

            margin: 8px 0;

            padding-left: 20px;

            display: flex;

            flex-direction: column;

            gap: 8px;

            color: #111111;

            font-size: 14px;

            font-weight: 600;

        }

        .mb-yellow-ul {

            list-style: none;

            padding: 0;

            margin: 8px 0;

            display: flex;

            flex-direction: column;

            gap: 8px;

        }

        .mb-yellow-ul li {

            font-size: 14px;

            color: #111111;

            position: relative;

            padding-left: 18px;

            line-height: 1.5;

        }

        .mb-yellow-ul li strong {

            font-weight: 800;

            color: #000000;

        }

        .mb-yellow-ul li::before {

            content: "•";

            position: absolute;

            left: 0;

            top: -1px;

            font-size: 18px;

            color: #000000;

        }

        .mb-cyan-btn {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            background: #000000;

            color: #ffffff;

            border: 2px solid #06b6d4;

            box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);

            border-radius: 8px;

            padding: 10px 24px;

            font-weight: 700;

            font-size: 14px;

            text-decoration: none;

            width: fit-content;

            margin-top: 10px;

            transition: all 0.2s ease;

        }

        .mb-cyan-btn:hover {

            box-shadow: 0 0 25px rgba(6, 182, 212, 0.7);

            border-color: #22d3ee;

            color: #ffffff;

        }

        .mb-whatsapp-cta-btn {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 8px;

            background: #000000;

            color: #ffffff;

            border: 2px solid #3b82f6;

            box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);

            border-radius: 8px;

            padding: 10px 24px;

            font-weight: 700;

            font-size: 14px;

            text-decoration: none;

            width: fit-content;

            margin-top: 10px;

            transition: all 0.2s ease;

        }

        .mb-whatsapp-cta-btn:hover {

            box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);

            border-color: #60a5fa;

            color: #ffffff;

        }

        .mb-whatsapp-cta-btn svg {

            width: 16px;

            height: 16px;

            fill: #25d366;

            flex-shrink: 0;

        }

        /* 3. Legal Regulation and Compliance (Dark Section) */

        .mb-legal-section {

            max-width: 1440px;

            margin: 50px auto;

            padding: 0 20px;

            display: flex;

            align-items: stretch;

            gap: 40px;

        }

        .mb-legal-badge {

            border: 2px solid #e5a823;

            border-radius: 8px;

            padding: 8px 18px;

            text-align: center;

            color: #e5a823;

            font-size: 16px;

            font-weight: 700;

            margin-bottom: 16px;

            background: rgba(229, 168, 35, 0.05);

            display: inline-block;

            width: 100%;

        }

        .mb-purple-neon-btn {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            background: #000000;

            color: #ffffff;

            border: 2px solid #a855f7;

            box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);

            border-radius: 8px;

            padding: 10px 24px;

            font-weight: 700;

            font-size: 14px;

            text-decoration: none;

            width: fit-content;

            margin-top: 16px;

            transition: all 0.2s ease;

        }

        .mb-purple-neon-btn:hover {

            box-shadow: 0 0 25px rgba(168, 85, 247, 0.7);

            border-color: #c084fc;

            color: #ffffff;

        }

        /* 5. Player's Reviews on Mahadev Book —*/

        .mb-reviews-section {

            max-width: 1440px;

            margin: 50px auto 60px auto;

            padding: 0 20px;

            text-align: center;

        }

        .mb-reviews-title {

            font-size: 28px;

            font-weight: 800;

            color: #e5a823;

            margin-bottom: 12px;

        }

        .mb-reviews-sub {

            font-size: 14px;

            color: #cccccc;

            line-height: 1.6;

            max-width: 950px;

            margin: 0 auto 35px auto;

        }

        .mb-reviews-grid {

            display: grid;

            grid-template-columns: repeat(2, 1fr);

            gap: 24px;

            text-align: center;

        }

        .mb-review-card {

            border: 2px solid #e5a823;

            border-radius: 12px;

            padding: 30px 24px;

            background: #0a0a0a;

            box-shadow: 0 4px 15px rgba(229, 168, 35, 0.15);

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: space-between;

        }

        .mb-review-text {

            font-size: 14px;

            font-style: italic;

            color: #dddddd;

            line-height: 1.6;

            margin-bottom: 24px;

        }

        .mb-reviewer-info {

            display: flex;

            align-items: center;

            gap: 12px;

        }

        .mb-reviewer-avatar {

            width: 46px;

            height: 46px;

            border-radius: 50%;

            background: #e5a823;

            color: #000000;

            font-weight: 800;

            font-size: 18px;

            display: flex;

            align-items: center;

            justify-content: center;

            border: 2px solid #ffffff;

        }

        .mb-reviewer-name {

            font-size: 15px;

            font-weight: 700;

            color: #ffffff;

        }

        @media (max-width: 992px) {

            .mb-insights-grid {

                grid-template-columns: 1fr;

            }

            .mb-yellow-full-container, .mb-yellow-full-container.reverse {

                flex-direction: column;

                text-align: center;

            }

            .mb-yellow-col-text {

                align-items: center;

            }

            .mb-yellow-ol, .mb-yellow-ul {

                text-align: left;

            }

            .mb-legal-section {

                flex-direction: column;

            }

            .mb-reviews-grid {

                grid-template-columns: 1fr;

            }

        }

        /* FAQ Section (Accordion) */

        .mb-faq-section {

            max-width: 1440px;

            margin: 50px auto 60px auto;

            padding: 0 20px;

        }

        .mb-faq-header {

            text-align: center;

            margin-bottom: 35px;

        }

        .mb-faq-title {

            font-size: 28px;

            font-weight: 800;

            color: #e5a823;

            margin-bottom: 8px;

        }

        .mb-faq-sub {

            font-size: 14px;

            color: #cccccc;

        }

        .mb-faq-list {

            display: flex;

            flex-direction: column;

            gap: 14px;

        }

        .mb-faq-item {

            border: 1.5px solid #e5a823;

            border-radius: 8px;

            background: #0a0a0a;

            overflow: hidden;

            transition: all 0.2s ease;

        }

        .mb-faq-item:hover {

            box-shadow: 0 4px 15px rgba(229, 168, 35, 0.2);

        }

        .mb-faq-question {

            padding: 16px 20px;

            font-size: 16px;

            font-weight: 700;

            color: #ffffff;

            display: flex;

            align-items: center;

            justify-content: space-between;

            cursor: pointer;

            user-select: none;

            background: rgba(229, 168, 35, 0.05);

        }

        .mb-faq-question:hover {

            color: #e5a823;

        }

        .mb-faq-icon {

            font-size: 20px;

            font-weight: 800;

            color: #e5a823;

            transition: transform 0.25s ease;

        }

        .mb-faq-answer {

            padding: 16px 20px;

            font-size: 14px;

            color: #cccccc;

            line-height: 1.65;

            border-top: 1px solid rgba(229, 168, 35, 0.2);

            background: #000000;

        }

        /* =========================================

           MAHADEV DARK FOOTER

           ========================================= */

        .mb-main-footer {

            background-color: #000000;

            color: #ffffff;

            padding: 50px 20px 20px 20px; /* bottom padding for sticky bar */

            border-top: 1px solid #222222;

            font-family: inherit;

        }

        .mb-footer-container {

            max-width: 1440px;

            margin: 0 auto;

        }

        /* 1. Top 2 Boxes: Disclaimer &amp; About Us */

        .mb-footer-top-boxes {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 24px;

            margin-bottom: 35px;

        }

        .mb-footer-box {

            border: 2px solid #e5a823;

            border-radius: 12px;

            background: #050505;

            padding: 24px 22px;

            text-align: center;

        }

        .mb-footer-box-title {

            font-size: 16px;

            font-weight: 800;

            color: #ffffff;

            margin-bottom: 12px;

        }

        .mb-footer-box-text {

            font-size: 14px;

            color: #cccccc;

            line-height: 1.6;

        }

        .mb-footer-box-text strong {

            color: #e5a823;

        }

        .mb-footer-contact-info {

            margin-top: 12px;

            font-size: 12.5px;

            color: #aaaaaa;

            line-height: 1.5;

        }

        /* 2. SEO Links Cloud */

        .mb-footer-links-cloud {

            text-align: center;

            margin-bottom: 35px;

            padding: 0 10px;

            line-height: 1.9;

        }

        .mb-footer-links-cloud a {

            color: #e5a823;

            font-size: 12.5px;

            font-weight: 600;

            text-decoration: none;

            transition: color 0.2s ease;

            margin: 0 4px;

            display: inline-block;

        }

        .mb-footer-links-cloud a:hover {

            color: #ffffff;

            text-decoration: underline;

        }

        .mb-footer-sep {

            color: #555555;

            margin: 0 3px;

        }

        /* 3. Logos &amp; Join Now Social Bar */

        .mb-footer-logos-row {

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 24px;

            margin-bottom: 25px;

            flex-wrap: wrap;

        }

        .mb-footer-brand-logo {

            font-size: 16px;

            font-weight: 900;

            color: #e5a823;

            letter-spacing: 1px;

        }

        .mb-footer-social-wrap {

            text-align: center;

            margin-bottom: 35px;

        }

        .mb-footer-social-title {

            font-size: 16px;

            font-weight: 800;

            color: #ffffff;

            margin-bottom: 12px;

        }

        .mb-footer-social-bar {

            display: inline-flex;

            align-items: center;

            justify-content: center;

            gap: 14px;

            background: #111111;

            border: 1px solid #333333;

            border-radius: 30px;

            padding: 8px 24px;

        }

        .mb-social-icon {

            width: 32px;

            height: 32px;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            color: #ffffff;

            text-decoration: none;

            font-size: 14px;

            font-weight: 700;

            transition: transform 0.2s ease;

        }

        .mb-social-icon:hover {

            transform: scale(1.15);

        }

        .mb-soc-x { background: #000000; border: 1px solid #555; }

        .mb-soc-yt { background: #ff0000; }

        .mb-soc-pin { background: #bd081c; }

        .mb-soc-wa { background: #25d366; }

        .mb-soc-tg { background: #0088cc; }

        /* 4. Trust Badges (DMCA, 18+) */

        .mb-footer-trust-row {

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 35px;

            margin-bottom: 35px;

            flex-wrap: wrap;

        }

        .mb-gamble-aware {

            font-size: 20px;

            font-weight: 900;

            color: #e5a823;

            letter-spacing: 0.5px;

        }

        .mb-dmca-badge {

            background: #10b981;

            color: #000000;

            font-weight: 900;

            font-size: 13px;

            padding: 4px 10px;

            border-radius: 4px;

            display: flex;

            align-items: center;

            gap: 4px;

        }

        .mb-18-badge {

            width: 36px;

            height: 36px;

            border-radius: 50%;

            border: 2px solid #ef4444;

            color: #ef4444;

            font-weight: 900;

            font-size: 13px;

            display: flex;

            align-items: center;

            justify-content: center;

        }

        /* 5. Five Bottom Feature Boxes */

        .mb-footer-bottom-features {

            display: grid;

            grid-template-columns: repeat(5, 1fr);

            gap: 16px;

            margin-bottom: 35px;

        }

        .mb-footer-feat-card {

            border: 1.5px solid #e5a823;

            border-radius: 8px;

            background: #080808;

            padding: 18px 12px;

            text-align: center;

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: flex-start;

        }

        .mb-footer-feat-icon {

            font-size: 24px;

            height: 32px;

            margin-bottom: 6px;

            display: flex;

            align-items: center;

            justify-content: center;

        }

        .mb-footer-feat-title {

            font-size: 13px;

            font-weight: 800;

            color: #ffffff;

            margin-bottom: 6px;

            line-height: 1.3;

        }

        .mb-footer-feat-desc {

            font-size: 11px;

            color: #aaaaaa;

            line-height: 1.4;

        }

        /* 6. Copyright Bar */

        .mb-footer-copy {

            text-align: center;

            font-size: 11.5px;

            color: #777777;

            padding-top: 20px;

            border-top: 1px solid #1a1a1a;

            line-height: 1.6;

        }

        @media (max-width: 992px) {

            .mb-footer-top-boxes {

                grid-template-columns: 1fr;

            }

            .mb-footer-bottom-features {

                grid-template-columns: repeat(3, 1fr);

            }

        }

        @media (max-width: 600px) {

            .mb-footer-bottom-features {

                grid-template-columns: 1fr;

            }

        }

        /* =========================================
           3D FLIP CARDS (Sports to Bet On &amp; Promotions)
           ========================================= */
        .mb-flip-card {
            background-color: transparent;
            perspective: 1000px;
            height: 240px;
            cursor: pointer;
            text-decoration: none;
            display: block;
        }
        .mb-flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
            border-radius: 12px;
        }
        .mb-flip-card:hover .mb-flip-card-inner {
            transform: rotateY(180deg);
        }
        .mb-flip-card-front {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            background-color: #ffd466;
            color: #000000;
            border-radius: 12px;
            padding: 22px 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        }
        .mb-flip-card-front .mb-flip-icon {
            font-size: 36px;
            line-height: 1;
            margin-bottom: 2px;
        }
        .mb-flip-card-front .mb-flip-title {
            font-size: 16px;
            font-weight: 800;
            color: #000000;
            line-height: 1.25;
            margin: 0;
        }
        .mb-flip-card-front .mb-flip-desc {
            font-size: 13.5px;
            color: #1a1a1a;
            line-height: 1.45;
            margin: 0;
        }
        .mb-flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            background-color: #3558b2;
            color: #ffffff;
            transform: rotateY(180deg);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 22px rgba(53, 88, 178, 0.45);
        }
        .mb-flip-play-btn {
            display: inline-block;
            border: 2px solid #ffd466;
            background: transparent;
            color: #ffd466;
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 800;
            border-radius: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
        }
        .mb-flip-card:hover .mb-flip-play-btn {
            background: #ffd466;
            color: #000000;
            box-shadow: 0 0 15px rgba(255, 212, 102, 0.6);
        }

        /* Sports Grid - 5 columns desktop */
        .mb-sports-bet-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        @media (max-width: 1200px) {
            .mb-sports-bet-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .mb-sports-bet-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }
            .mb-flip-card {
                height: 220px;
            }
        }
        @media (max-width: 480px) {
            .mb-sports-bet-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Promotions Grid - 3 columns desktop */
        .mb-promo-bonuses-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 30px;
        }
        @media (max-width: 992px) {
            .mb-promo-bonuses-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .mb-promo-bonuses-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Centered Section Buttons */
        .mb-centered-hero-section .mb-glowing-btn,
        .mb-yellow-inner .mb-glowing-btn,
        .mb-why-choose-card .mb-why-choose-btn {
            align-self: center !important;
            margin-left: auto !important;
            margin-right: auto !important;
            display: inline-flex !important;
        }

        /* =========================================
           MAHADEV GLOBAL FOOTER (PACKAGE COMPATIBLE)
           ========================================= */
        .mb-main-footer {
            background-color: #000000;
            color: #ffffff;
            padding: 50px 20px 40px 20px;
            border-top: 1px solid #222222;
            font-family: inherit;
        }
        .mb-footer-container {
            max-width: 1440px;
            margin: 0 auto;
        }
        .mb-footer-top-boxes {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 35px;
        }
        .mb-footer-box {
            border: 2px solid #e5a823;
            border-radius: 12px;
            background: #050505;
            padding: 24px 22px;
            text-align: center;
        }
        .mb-footer-box-title {
            font-size: 16px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
        }
        .mb-footer-box-text {
            font-size: 14px;
            color: #cccccc;
            line-height: 1.6;
        }
        .mb-footer-box-text strong {
            color: #e5a823;
        }
        .mb-footer-contact-info {
            margin-top: 12px;
            font-size: 12.5px;
            color: #aaaaaa;
            line-height: 1.5;
        }
        .mb-footer-links-cloud {
            text-align: center;
            margin-bottom: 35px;
            padding: 0 10px;
            line-height: 1.9;
        }
        .mb-footer-links-cloud a {
            color: #e5a823;
            font-size: 12.5px;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s ease;
            margin: 0 4px;
            display: inline-block;
        }
        .mb-footer-links-cloud a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .mb-footer-sep {
            color: #555555;
            margin: 0 3px;
        }
        .mb-footer-social-wrap {
            text-align: center;
            margin-bottom: 35px;
        }
        .mb-footer-social-title {
            font-size: 16px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
        }
        .mb-footer-social-bar {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            background: #111111;
            border: 1px solid #333333;
            border-radius: 30px;
            padding: 8px 24px;
        }
        .mb-social-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            transition: transform 0.2s ease;
        }
        .mb-social-icon:hover {
            transform: scale(1.15);
        }
        .mb-soc-x { background: #000000; border: 1px solid #555; }
        .mb-soc-yt { background: #ff0000; }
        .mb-soc-pin { background: #bd081c; }
        .mb-soc-wa { background: #25d366; }
        .mb-soc-tg { background: #0088cc; }
        .mb-footer-trust-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 35px;
            margin-bottom: 35px;
            flex-wrap: wrap;
        }
        .mb-dmca-badge {
            background: #10b981;
            color: #000000;
            font-weight: 900;
            font-size: 13px;
            padding: 4px 10px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .mb-18-badge {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid #ef4444;
            color: #ef4444;
            font-weight: 900;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mb-footer-bottom-features {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            margin-bottom: 35px;
        }
        .mb-footer-feat-card {
            border: 1.5px solid #e5a823;
            border-radius: 8px;
            background: #080808;
            padding: 18px 12px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }
        .mb-footer-feat-icon {
            font-size: 24px;
            height: 32px;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .mb-footer-feat-title {
            font-size: 13px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 6px;
            line-height: 1.3;
        }
        .mb-footer-feat-desc {
            font-size: 11px;
            color: #aaaaaa;
            line-height: 1.4;
        }
        .mb-footer-copy {
            text-align: center;
            font-size: 11.5px;
            color: #777777;
            padding-top: 20px;
            border-top: 1px solid #1a1a1a;
            line-height: 1.6;
        }
        @media (max-width: 992px) {
            .mb-footer-top-boxes {
                grid-template-columns: 1fr;
            }
            .mb-footer-bottom-features {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 600px) {
            .mb-footer-bottom-features {
                grid-template-columns: 1fr;
            }
        }

        /* ==========================================================================
           WordPress / Elementor Style Universal Responsive Image Fit (No Crop / No Cut)
           ========================================================================== */
        .mb-gold-card-frame,
        .mb-dark-col-img,
        .mb-yellow-col-img,
        .mb-yellow-app-col-img,
        .mb-two-cards-grid,
        .mb-why-choose-card {
            min-width: 0;
        }

        .mb-gold-card-frame img,
        .mb-dark-col-img img,
        .mb-yellow-col-img img,
        .mb-yellow-app-col-img img,
        .mb-how-it-works-img img {
            width: 100% !important;
            height: auto !important;
            max-height: 520px !important;
            object-fit: contain !important;
            object-position: center !important;
            display: block !important;
            margin: 0 auto !important;
        }

        .mb-sport-card,
        .mb-feature-card,
        .mb-casino-card-169,
        .mb-card-item-wide,
        .mb-lobby-card {
            height: auto !important;
            aspect-ratio: auto !important;
            min-height: 0 !important;
            overflow: hidden;
            display: block !important;
            position: relative;
            background: #000000;
            border-radius: 8px;
        }

        .mb-sport-card img,
        .mb-feature-card img,
        .mb-casino-card-169 img,
        .mb-card-item-wide img,
        .mb-lobby-card img {
            width: 100% !important;
            height: auto !important;
            max-height: none !important;
            display: block !important;
            border-radius: 8px;
        }

        /* Universal Blog & CMS Page Content Images */
        .prose img,
        article img,
        #page-content-area img,
        .rich-editor-content img,
        .mb-article-body img {
            max-width: 100% !important;
            height: auto !important;
            object-fit: contain !important;
            border-radius: 12px;
            display: block !important;
            margin: 1.5rem auto !important;
        }

        /* ==========================================================================
           ORIGINAL WORDPRESS / ELEMENTOR CMS PAGE STYLES (About Us, App, Support)
           ========================================================================== */

        /* 1. Dark Two-Column Content Sections (About Us & Inner Pages) */
        .mb-dark-section {
            max-width: 1440px;
            margin: 45px auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 40px;
            box-sizing: border-box;
        }
        .mb-dark-section.reverse {
            flex-direction: row-reverse;
        }
        .mb-dark-col-text {
            flex: 1.1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 16px;
        }
        .mb-dark-heading {
            font-size: 28px;
            font-weight: 800;
            color: #e5a823;
            line-height: 1.3;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 5px;
        }
        .mb-dark-desc {
            font-size: 15px;
            color: #d1d5db;
            line-height: 1.8;
            margin-bottom: 0;
        }
        .mb-dark-desc strong {
            color: #ffffff;
        }
        .mb-dark-col-img {
            flex: 0.9;
            display: flex;
            justify-content: center;
            align-items: center;
            min-width: 0;
        }
        .mb-gold-card-frame {
            border: 2px solid #e5a823;
            border-radius: 14px;
            padding: 10px;
            background: #000000;
            box-shadow: 0 4px 25px rgba(229, 168, 35, 0.2);
            width: 100%;
            overflow: hidden;
            box-sizing: border-box;
        }
        .mb-gold-card-frame img {
            width: 100% !important;
            height: auto !important;
            border-radius: 8px;
            display: block;
            object-fit: contain;
        }
        .mb-gold-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(135deg, #ffd700 0%, #e5a823 50%, #b8860b 100%);
            color: #000000 !important;
            font-weight: 800;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 28px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(229, 168, 35, 0.4);
            transition: all 0.25s ease;
            text-decoration: none;
            width: fit-content;
            margin-top: 8px;
        }
        .mb-gold-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(229, 168, 35, 0.65);
            color: #000000 !important;
        }

        /* 2. Standout Section (4 Numbered Columns in Gold Frame) */
        .mb-standout-section {
            max-width: 1440px;
            margin: 50px auto;
            padding: 0 20px;
            box-sizing: border-box;
        }
        .mb-standout-title {
            font-size: 28px;
            font-weight: 800;
            color: #e5a823;
            text-align: center;
            margin-bottom: 25px;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-standout-frame {
            border: 2px solid #e5a823;
            border-radius: 14px;
            background: #080808;
            padding: 35px 25px;
            box-shadow: 0 4px 25px rgba(229, 168, 35, 0.15);
            box-sizing: border-box;
        }
        .mb-standout-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }
        .mb-standout-col {
            background: #111116;
            border: 1px solid rgba(229, 168, 35, 0.3);
            border-radius: 10px;
            padding: 24px 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.25s ease;
            box-sizing: border-box;
        }
        .mb-standout-col:hover {
            border-color: #e5a823;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(229, 168, 35, 0.25);
        }
        .mb-standout-badge-num {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffd700, #e5a823);
            color: #000000;
            font-size: 18px;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            box-shadow: 0 3px 10px rgba(229, 168, 35, 0.4);
            flex-shrink: 0;
        }
        .mb-standout-col-title {
            font-size: 17px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
        }
        .mb-standout-col-desc {
            font-size: 13px;
            color: #b3b3b3;
            line-height: 1.65;
            margin: 0;
        }
        .mb-standout-btn-wrap {
            text-align: center;
            margin-top: 15px;
        }

        /* 3. Services Section (4 Dark Cards) */
        .mb-services-section {
            max-width: 1440px;
            margin: 50px auto;
            padding: 0 20px;
            box-sizing: border-box;
        }
        .mb-services-title {
            font-size: 28px;
            font-weight: 800;
            color: #e5a823;
            text-align: center;
            margin-bottom: 25px;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .mb-service-card {
            background: #111116;
            border: 1.5px solid rgba(229, 168, 35, 0.35);
            border-radius: 12px;
            padding: 26px 20px;
            text-align: center;
            transition: all 0.25s ease;
            box-sizing: border-box;
        }
        .mb-service-card:hover {
            border-color: #e5a823;
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(229, 168, 35, 0.25);
        }
        .mb-service-card-title {
            font-size: 18px;
            font-weight: 800;
            color: #e5a823;
            margin-bottom: 10px;
        }
        .mb-service-card-desc {
            font-size: 13.5px;
            color: #cccccc;
            line-height: 1.6;
            margin: 0;
        }

        /* 4. Why Trust & Join Sections */
        .mb-why-trust-section {
            max-width: 1440px;
            margin: 50px auto;
            padding: 0 20px;
            box-sizing: border-box;
        }
        .mb-why-trust-inner {
            background: linear-gradient(135deg, #ffd700 0%, #e5a823 50%, #b8860b 100%);
            color: #000000;
            border-radius: 14px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 6px 30px rgba(229, 168, 35, 0.3);
            box-sizing: border-box;
        }
        .mb-why-trust-title {
            font-size: 30px;
            font-weight: 900;
            color: #000000;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-why-trust-desc {
            font-size: 15px;
            color: #1a1a1a;
            line-height: 1.7;
            max-width: 1000px;
            margin: 0 auto 20px auto;
        }
        .mb-why-trust-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #000000;
            color: #e5a823 !important;
            border: 2px solid #000000;
            font-weight: 800;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 30px;
            border-radius: 8px;
            transition: all 0.2s ease;
            text-decoration: none;
        }
        .mb-why-trust-btn:hover {
            background: #111116;
            color: #ffffff !important;
            transform: translateY(-2px);
        }

        .mb-join-section {
            max-width: 1440px;
            margin: 50px auto;
            padding: 0 20px;
            box-sizing: border-box;
        }
        .mb-join-card {
            border: 2px solid #e5a823;
            border-radius: 14px;
            background: #080808;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 25px rgba(229, 168, 35, 0.15);
            box-sizing: border-box;
        }
        .mb-join-title {
            font-size: 30px;
            font-weight: 800;
            color: #e5a823;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-join-desc {
            font-size: 15px;
            color: #d1d5db;
            line-height: 1.7;
            max-width: 1000px;
            margin: 0 auto 15px auto;
        }
        .mb-join-btn-wrap {
            text-align: center;
            margin-top: 20px;
        }

        /* 5. Customer Support & Betting App Core Components */
        .mb-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
            width: 100%;
        }
        .mb-main-title {
            font-size: 28px;
            font-weight: 800;
            color: #e5a823;
            margin-bottom: 12px;
            font-family: 'Montserrat', sans-serif;
            line-height: 1.3;
        }
        .mb-subtitle {
            font-size: 14.5px;
            color: #d1d5db;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .mb-btn-center {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            margin: 20px auto;
        }

        /* Hero Section */
        .mb-hero-section {
            padding: 30px 0;
            margin-bottom: 20px;
        }
        .mb-hero-grid {
            display: flex;
            gap: 40px;
            align-items: stretch;
        }
        .mb-hero-text {
            flex: 1.2;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .mb-hero-text h1 {
            font-size: 30px;
            font-weight: 800;
            color: #e5a823;
            margin-bottom: 16px;
            line-height: 1.3;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-hero-text p {
            font-size: 14.5px;
            color: #d1d5db;
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .mb-hero-text strong {
            color: #ffffff;
        }
        .mb-hero-img-wrap {
            flex: 1;
            display: flex;
            align-items: stretch;
        }
        .mb-hero-img-card {
            border: 2px solid #e5a823;
            border-radius: 16px;
            padding: 8px;
            background: #000000;
            box-shadow: 0 6px 25px rgba(229, 168, 35, 0.2);
            width: 100%;
            height: 100%;
            display: flex;
        }
        .mb-hero-img-card img {
            width: 100%;
            height: 100%;
            min-height: 290px;
            object-fit: cover;
            border-radius: 10px;
            display: block;
        }

        /* Contact 4-Cards Grid */
        .mb-contact-section {
            padding: 35px 0;
            margin: 20px auto;
        }
        .mb-contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 25px;
        }
        .mb-contact-card {
            background: #ffffff;
            color: #111111;
            border-radius: 14px;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        }
        .mb-card-top-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }
        .mb-card-top-header h3 {
            font-size: 20px;
            font-weight: 800;
            color: #111111;
            margin: 0;
        }
        .mb-card-icon {
            font-size: 26px;
            line-height: 1;
        }
        .mb-contact-desc {
            font-size: 14px;
            color: #374151;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .mb-contact-bullets {
            list-style: none;
            padding: 0;
            margin: 0 0 16px 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .mb-contact-bullets li {
            font-size: 13.5px;
            color: #1f2937;
            font-weight: 500;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .mb-contact-bullets li::before {
            content: '✓';
            color: #059669;
            font-weight: 900;
            flex-shrink: 0;
            font-size: 15px;
        }
        .mb-card-footer-text {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        /* Yellow Full-Width Section */
        .mb-yellow-section {
            background: linear-gradient(135deg, #ffd700 0%, #e5a823 50%, #b8860b 100%);
            color: #000000;
            border-radius: 14px;
            padding: 40px 30px;
            text-align: center;
            margin: 45px auto;
            box-shadow: 0 6px 30px rgba(229, 168, 35, 0.3);
            box-sizing: border-box;
        }
        .mb-yellow-title {
            font-size: 28px;
            font-weight: 900;
            color: #000000;
            margin-bottom: 12px;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-yellow-subtitle {
            font-size: 15px;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.6;
        }
        .mb-yellow-bullets-wrap {
            max-width: 900px;
            margin: 0 auto 20px auto;
            text-align: left;
        }
        .mb-yellow-bullets {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .mb-yellow-bullets li {
            font-size: 14.5px;
            color: #000000;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .mb-yellow-bullets li::before {
            content: '●';
            color: #000000;
            font-size: 12px;
        }
        .mb-yellow-notice {
            font-size: 14px;
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .mb-yellow-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .mb-black-badge-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #000000;
            color: #e5a823 !important;
            font-weight: 800;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 28px;
            border-radius: 8px;
            border: 2px solid #000000;
            transition: all 0.2s ease;
            text-decoration: none;
        }
        .mb-black-badge-btn:hover {
            background: #111116;
            color: #ffffff !important;
            transform: translateY(-2px);
        }

        /* Issues 6-Card Grid */
        .mb-issues-section {
            padding: 35px 0;
            margin: 30px auto;
        }
        .mb-issues-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 25px;
        }
        .mb-issue-card {
            background: #080808;
            border: 2px solid #e5a823;
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(229, 168, 35, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .mb-issue-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(229, 168, 35, 0.25);
        }
        .mb-issue-card h3 {
            font-size: 17px;
            font-weight: 800;
            color: #e5a823;
            margin-bottom: 10px;
        }
        .mb-issue-card p {
            font-size: 13.5px;
            color: #cccccc;
            line-height: 1.6;
            margin: 0;
        }

        /* Support Hours 2 Gold Frames */
        .mb-support-hours-section {
            padding: 35px 0;
            margin: 30px auto;
        }
        .mb-hours-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .mb-gold-framed-box {
            border: 2px solid #e5a823;
            border-radius: 14px;
            background: #080808;
            padding: 32px 26px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 20px rgba(229, 168, 35, 0.15);
        }
        .mb-box-title-pill {
            display: inline-block;
            background: #e5a823;
            color: #000000;
            font-weight: 800;
            font-size: 15px;
            padding: 7px 20px;
            border-radius: 20px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .mb-hours-bullets {
            list-style: none;
            padding: 0;
            margin: 18px 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .mb-hours-bullets li {
            font-size: 14px;
            color: #e5e7eb;
            line-height: 1.5;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .mb-hours-bullets li::before {
            content: '✓';
            color: #e5a823;
            font-weight: 900;
            flex-shrink: 0;
            font-size: 15px;
        }

        /* 7 Numbered Cards Outer Gold Frame */
        .mb-outer-gold-frame {
            border: 2px solid #e5a823;
            border-radius: 16px;
            background: #080808;
            padding: 25px;
            margin: 30px 0 20px 0;
            box-shadow: 0 6px 25px rgba(229, 168, 35, 0.15);
        }
        .mb-numbered-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .mb-row-2 {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 10px;
        }
        .mb-num-card {
            background: #000000;
            border: 1px solid #262626;
            border-radius: 10px;
            padding: 22px 16px;
            position: relative;
            transition: transform 0.2s, border-color 0.2s;
            text-align: center;
        }
        .mb-num-card:hover {
            transform: translateY(-3px);
            border-color: #e5a823;
            box-shadow: 0 4px 15px rgba(229, 168, 35, 0.2);
        }
        .mb-num-badge {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffd700, #e5a823);
            color: #000000;
            font-weight: 900;
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px auto;
        }
        .mb-num-card h3 {
            font-size: 16px;
            font-weight: 800;
            color: #e5a823;
            margin-bottom: 8px;
        }
        .mb-num-card p {
            font-size: 13px;
            color: #9ca3af;
            line-height: 1.5;
            margin: 0;
        }

        /* OS Download Boxes (Android & iOS) */
        .mb-download-boxes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 25px;
            text-align: left;
        }
        .mb-os-card {
            background: #000000;
            border: 2px solid #000000;
            border-radius: 12px;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            color: #ffffff;
        }
        .mb-os-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid #222222;
        }
        .mb-os-header h3 {
            font-size: 20px;
            font-weight: 800;
            color: #e5a823;
            margin: 0;
        }
        .mb-os-steps {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .mb-os-steps li {
            font-size: 13.5px;
            color: #d1d5db;
            line-height: 1.5;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .mb-step-bullet {
            background: #e5a823;
            color: #000000;
            font-weight: 900;
            font-size: 12px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        /* Features 6-Card Grid (White Cards) */
        .mb-features-section {
            padding: 35px 0;
            margin: 30px auto;
        }
        .mb-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 25px;
        }
        .mb-features-grid .mb-feature-card {
            background: #ffffff;
            color: #111111;
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .mb-features-grid .mb-feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        .mb-features-grid .mb-feature-card h3 {
            font-size: 17px;
            font-weight: 800;
            color: #111111;
            margin-bottom: 10px;
        }
        .mb-features-grid .mb-feature-card p {
            font-size: 13.5px;
            color: #374151;
            line-height: 1.6;
            margin: 0;
        }

        /* Security Section */
        .mb-security-section {
            padding: 35px 0;
            margin: 30px auto;
        }
        .mb-security-grid {
            display: flex;
            gap: 40px;
            align-items: stretch;
        }
        .mb-security-text {
            flex: 1.2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 14px;
        }
        .mb-sec-points {
            list-style: none;
            padding: 0;
            margin: 15px 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .mb-sec-points li {
            font-size: 14px;
            color: #d1d5db;
            line-height: 1.6;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .mb-sec-icon {
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .mb-security-img-wrap {
            flex: 1;
            display: flex;
            align-items: stretch;
        }
        .mb-security-img-card {
            border: 2px solid #e5a823;
            border-radius: 16px;
            padding: 8px;
            background: #000000;
            box-shadow: 0 6px 25px rgba(229, 168, 35, 0.2);
            width: 100%;
            height: 100%;
            display: flex;
        }
        .mb-security-img-card img {
            width: 100%;
            height: 100%;
            min-height: 290px;
            object-fit: cover;
            border-radius: 10px;
            display: block;
        }

        .mb-faq-container {
            max-width: 950px;
            margin: 25px auto 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .mb-faq-item {
            background: #0d0d0d;
            border: 1px solid #262626;
            border-radius: 8px;
            overflow: hidden;
            transition: border-color 0.2s;
            margin-bottom: 10px;
        }
        .mb-faq-item.active,
        details.mb-faq-item[open] {
            border-color: #e5a823;
        }
        .mb-faq-question {
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-size: 15.5px;
            font-weight: 700;
            color: #ffffff;
            user-select: none;
            transition: background 0.2s, color 0.2s;
            list-style: none;
        }
        .mb-faq-question::-webkit-details-marker {
            display: none;
        }
        .mb-faq-question:hover {
            background: #141414;
            color: #e5a823;
        }
        .mb-faq-item.active .mb-faq-question,
        details.mb-faq-item[open] .mb-faq-question {
            color: #e5a823;
            background: #141414;
        }
        .mb-faq-icon {
            font-size: 18px;
            font-weight: 700;
            color: #e5a823;
            transition: transform 0.3s ease;
            display: inline-block;
            line-height: 1;
        }
        .mb-faq-item.active .mb-faq-icon,
        details.mb-faq-item[open] .mb-faq-icon {
            transform: rotate(45deg);
        }
        .mb-faq-answer {
            display: none;
            padding: 16px 20px 18px 20px;
            font-size: 14px;
            color: #cccccc;
            line-height: 1.6;
            border-top: 1px solid rgba(229, 168, 35, 0.15);
            background: #000000;
        }
        .mb-faq-item.active .mb-faq-answer,
        details.mb-faq-item[open] .mb-faq-answer {
            display: block !important;
        }

        /* Two Cards Grid */
        .mb-two-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin: 30px 0;
        }
        .mb-why-choose-card {
            border: 2px solid #e5a823;
            border-radius: 14px;
            background: #080808;
            padding: 28px 22px;
            box-shadow: 0 4px 20px rgba(229, 168, 35, 0.12);
        }
        .mb-card-title {
            font-size: 20px;
            font-weight: 800;
            color: #e5a823;
            margin-bottom: 12px;
        }
        .mb-card-text {
            font-size: 14px;
            color: #d1d5db;
            line-height: 1.6;
        }

        /* 6. Mobile & Tablet Responsive for Inner Pages */
        @media (max-width: 991px) {
            .mb-dark-section,
            .mb-dark-section.reverse,
            .mb-hero-grid,
            .mb-security-grid {
                flex-direction: column !important;
                gap: 25px !important;
                margin: 30px auto !important;
            }
            .mb-dark-col-text,
            .mb-dark-col-img,
            .mb-hero-text,
            .mb-hero-img-wrap,
            .mb-security-text,
            .mb-security-img-wrap {
                width: 100% !important;
                flex: none !important;
            }
            .mb-standout-grid,
            .mb-services-grid,
            .mb-contact-grid,
            .mb-hours-grid,
            .mb-download-boxes-grid,
            .mb-two-cards-grid {
                grid-template-columns: 1fr !important;
            }
            .mb-issues-grid,
            .mb-features-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            .mb-numbered-cards-grid,
            .mb-row-2 {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }
        @media (max-width: 640px) {
            .mb-standout-grid,
            .mb-services-grid,
            .mb-issues-grid,
            .mb-features-grid,
            .mb-numbered-cards-grid,
            .mb-row-2 {
                grid-template-columns: 1fr !important;
            }
            .mb-dark-heading,
            .mb-standout-title,
            .mb-services-title,
            .mb-why-trust-title,
            .mb-join-title,
            .mb-hero-text h1,
            .mb-main-title,
            .mb-yellow-title {
                font-size: 22px !important;
            }
            .mb-why-trust-inner,
            .mb-join-card,
            .mb-standout-frame,
            .mb-yellow-section,
            .mb-outer-gold-frame {
                padding: 24px 15px !important;
            }
        }

        /* 7. News & Insights Blog Grid & Universal Clickable Images */
        .mb-insights-section {
            max-width: 1440px;
            margin: 45px auto;
            padding: 0 20px;
            box-sizing: border-box;
        }
        .mb-insights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 25px;
        }
        .mb-insight-card {
            display: flex !important;
            flex-direction: column;
            background: #0d0d12;
            border: 1px solid #232332;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
            cursor: pointer;
            height: 100%;
        }
        .mb-insight-card:hover {
            transform: translateY(-5px);
            border-color: #e5a823;
            box-shadow: 0 10px 25px rgba(229, 168, 35, 0.25);
        }
        .mb-insight-img-wrap {
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #000000;
            position: relative;
        }
        .mb-insight-img-wrap img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        .mb-insight-card:hover .mb-insight-img-wrap img {
            transform: scale(1.05);
        }
        .mb-insight-content {
            padding: 20px 18px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            justify-content: space-between;
            gap: 10px;
            background: #101017;
        }
        .mb-insight-cat {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            color: #e5a823;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 4px;
        }
        .mb-insight-title {
            font-size: 16.5px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.4;
            transition: color 0.2s ease;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin: 0;
        }
        .mb-insight-card:hover .mb-insight-title {
            color: #e5a823;
        }
        .mb-insight-date {
            font-size: 12px;
            color: #888899;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: 4px;
        }
        .mb-insight-link {
            font-size: 13px;
            font-weight: 700;
            color: #e5a823;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 8px;
            transition: transform 0.2s ease;
        }
        .mb-insight-card:hover .mb-insight-link {
            transform: translateX(4px);
            color: #ffd466;
        }
        .mb-insights-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #000000;
            color: #ffffff !important;
            border: 2px solid #e5a823;
            box-shadow: 0 0 15px rgba(229, 168, 35, 0.4);
            border-radius: 8px;
            padding: 12px 28px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
            text-decoration: none;
            margin: 10px auto 0 auto;
        }
        .mb-insights-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(229, 168, 35, 0.7);
            border-color: #ffd466;
            color: #e5a823 !important;
        }

        /* Clickable Images Global Behavior */
        .mb-gold-card-frame,
        .mb-sport-card,
        .mb-feature-card,
        .mb-casino-card-169,
        .mb-card-item-wide,
        .mb-lobby-card,
        .mb-full-promo-banner a,
        .mb-yellow-col-img a {
            cursor: pointer !important;
            display: block;
            transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
        }
        .mb-gold-card-frame:hover {
            transform: translateY(-3px) scale(1.01);
            box-shadow: 0 8px 30px rgba(229, 168, 35, 0.35);
        }
        .mb-yellow-col-img a:hover img {
            transform: scale(1.02);
            transition: transform 0.3s ease;
        }

        @media (max-width: 991px) {
            .mb-insights-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 16px !important;
            }
        }
        @media (max-width: 640px) {
            .mb-insights-grid {
                grid-template-columns: 1fr !important;
            }
        }

        /* Blog Article Typography & Element Highlighting */
        .blog-article-content {
            color: #d1d5db;
            font-size: 15.5px;
            line-height: 1.85;
        }
        .blog-article-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.4rem, 2.5vw, 1.85rem) !important;
            font-weight: 800 !important;
            color: #ffffff !important;
            margin-top: 2.25rem !important;
            margin-bottom: 1rem !important;
            line-height: 1.35 !important;
            border-left: 4px solid #f59e0b;
            padding-left: 14px;
            letter-spacing: -0.01em;
        }
        .blog-article-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.2rem, 2vw, 1.45rem) !important;
            font-weight: 700 !important;
            color: #e5a823 !important;
            margin-top: 1.75rem !important;
            margin-bottom: 0.75rem !important;
            line-height: 1.38 !important;
        }
        .blog-article-content h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.05rem, 1.6vw, 1.25rem) !important;
            font-weight: 700 !important;
            color: #f3f4f6 !important;
            margin-top: 1.35rem !important;
            margin-bottom: 0.5rem !important;
            line-height: 1.4 !important;
        }
        .blog-article-content p {
            margin-bottom: 1.25rem !important;
            line-height: 1.85 !important;
            color: #d1d5db !important;
        }
        .blog-article-content a {
            color: #f59e0b !important;
            font-weight: 600 !important;
            text-decoration: underline !important;
            text-decoration-color: rgba(245, 158, 11, 0.5) !important;
            text-underline-offset: 4px !important;
            transition: all 0.2s ease-in-out !important;
            border-radius: 4px;
            padding: 0 2px;
        }
        .blog-article-content a:hover {
            color: #fde047 !important;
            background-color: rgba(245, 158, 11, 0.15) !important;
            text-decoration-color: #fde047 !important;
        }
        .blog-article-content strong, .blog-article-content b {
            color: #ffffff !important;
            font-weight: 700 !important;
        }
        .blog-article-content ul {
            list-style-type: disc !important;
            margin-left: 1.5rem !important;
            margin-bottom: 1.25rem !important;
            line-height: 1.8 !important;
            color: #d1d5db !important;
        }
        .blog-article-content ol {
            list-style-type: decimal !important;
            margin-left: 1.5rem !important;
            margin-bottom: 1.25rem !important;
            line-height: 1.8 !important;
            color: #d1d5db !important;
        }
        .blog-article-content li {
            margin-bottom: 0.5rem !important;
        }
        .blog-article-content blockquote {
            border-left: 4px solid #f59e0b !important;
            background: rgba(245, 158, 11, 0.06) !important;
            padding: 14px 20px !important;
            border-radius: 0 12px 12px 0 !important;
            color: #fef08a !important;
            font-style: italic !important;
            margin: 1.5rem 0 !important;
        }
        .blog-article-content table {
            width: 100% !important;
            border-collapse: collapse !important;
            margin: 1.5rem 0 !important;
            font-size: 14px !important;
        }
        .blog-article-content th, .blog-article-content td {
            padding: 10px 14px !important;
            border: 1px solid rgba(245, 158, 11, 0.2) !important;
        }
        .blog-article-content th {
            background: rgba(245, 158, 11, 0.12) !important;
            color: #f59e0b !important;
            font-weight: 700 !important;
        }
        .blog-article-content img {
            max-width: 100% !important;
            height: auto !important;
            border-radius: 12px !important;
            margin: 1.5rem auto !important;
            display: block !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
        }

/* ====================================================
   GLOBAL & INNER PAGES EXTENSIONS
   ==================================================== */

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background-color: #070709; color: #ffffff; font-family: 'Poppins', sans-serif; }
        
        .gold-gradient-bg {
            background: linear-gradient(135deg, #ffd700 0%, #e5a823 50%, #b8860b 100%);
        }
        .gold-gradient-text {
            background: linear-gradient(135deg, #fff275 0%, #ffd700 40%, #e5a823 70%, #d49410 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .gold-border {
            border: 1px solid rgba(229, 168, 35, 0.35);
        }
        .gold-glow {
            box-shadow: 0 0 25px rgba(229, 168, 35, 0.3);
        }
        .card-dark {
            background: radial-gradient(120% 120% at 50% 0%, #171720 0%, #0c0c10 100%);
            border: 1px solid #232332;
        }
        .card-dark:hover {
            border-color: rgba(229, 168, 35, 0.6);
            transform: translateY(-4px);
            transition: all 0.25s ease-in-out;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 15px rgba(229,168,35,0.2);
        }
        
        /* Pulse Animation */
        @keyframes pulse-gold {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        .pulse-whatsapp {
            animation: pulse-gold 2s infinite;
        }

        /* Marquee */
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            display: flex;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 25s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #0b0b0e; }
        ::-webkit-scrollbar-thumb { background: #262633; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #e5a823; }

        /* WordPress / Elementor Style Universal Responsive Image Fit */
        .mb-gold-card-frame,
        .mb-dark-col-img,
        .mb-yellow-col-img,
        .mb-yellow-app-col-img,
        .mb-two-cards-grid,
        .mb-why-choose-card {
            min-width: 0;
        }
        .mb-gold-card-frame img,
        .mb-dark-col-img img,
        .mb-yellow-col-img img,
        .mb-yellow-app-col-img img,
        .mb-how-it-works-img img {
            width: 100% !important;
            height: auto !important;
            max-height: 520px !important;
            object-fit: contain !important;
            object-position: center !important;
            display: block !important;
            margin: 0 auto !important;
        }
        .mb-sport-card,
        .mb-feature-card,
        .mb-casino-card-169,
        .mb-card-item-wide,
        .mb-lobby-card {
            height: auto !important;
            aspect-ratio: auto !important;
            min-height: 0 !important;
            overflow: hidden;
            display: block !important;
            position: relative;
            background: #000000;
            border-radius: 8px;
        }
        .mb-sport-card img,
        .mb-feature-card img,
        .mb-casino-card-169 img,
        .mb-card-item-wide img,
        .mb-lobby-card img {
            width: 100% !important;
            height: auto !important;
            max-height: none !important;
            display: block !important;
            border-radius: 8px;
        }

        /* Universal Content & Blog Article Images */
        .prose img,
        article img,
        #page-content-area img,
        .rich-editor-content img,
        .mb-article-body img {
            max-width: 100% !important;
            height: auto !important;
            object-fit: contain !important;
            border-radius: 12px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        /* Inner CMS Pages: About Us, Betting App, Support */
        .mb-dark-section {
            max-width: 1440px;
            margin: 45px auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 40px;
            box-sizing: border-box;
        }
        .mb-dark-section.reverse {
            flex-direction: row-reverse;
        }
        .mb-dark-col-text {
            flex: 1.1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 16px;
        }
        .mb-dark-heading {
            font-size: 28px;
            font-weight: 800;
            color: #e5a823;
            line-height: 1.3;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 5px;
        }
        .mb-dark-desc {
            font-size: 15px;
            color: #d1d5db;
            line-height: 1.8;
            margin-bottom: 0;
        }
        .mb-dark-desc strong {
            color: #ffffff;
        }
        .mb-dark-col-img {
            flex: 0.9;
            display: flex;
            justify-content: center;
            align-items: center;
            min-width: 0;
        }
        .mb-gold-card-frame {
            border: 2px solid #e5a823;
            border-radius: 14px;
            padding: 10px;
            background: #000000;
            box-shadow: 0 4px 25px rgba(229, 168, 35, 0.2);
            width: 100%;
            overflow: hidden;
            box-sizing: border-box;
        }
        .mb-gold-card-frame img {
            width: 100% !important;
            height: auto !important;
            border-radius: 8px;
            display: block;
            object-fit: contain;
        }
        .mb-gold-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(135deg, #ffd700 0%, #e5a823 50%, #b8860b 100%);
            color: #000000 !important;
            font-weight: 800;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 28px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(229, 168, 35, 0.4);
            transition: all 0.25s ease;
            text-decoration: none;
            width: fit-content;
            margin-top: 8px;
        }
        .mb-gold-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(229, 168, 35, 0.65);
            color: #000000 !important;
        }
        .mb-standout-section, .mb-services-section, .mb-why-trust-section, .mb-join-section {
            max-width: 1440px;
            margin: 50px auto;
            padding: 0 20px;
            box-sizing: border-box;
        }
        .mb-standout-title, .mb-services-title, .mb-join-title {
            font-size: 28px;
            font-weight: 800;
            color: #e5a823;
            text-align: center;
            margin-bottom: 25px;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-standout-frame, .mb-join-card {
            border: 2px solid #e5a823;
            border-radius: 14px;
            background: #080808;
            padding: 35px 25px;
            box-shadow: 0 4px 25px rgba(229, 168, 35, 0.15);
            box-sizing: border-box;
        }
        .mb-standout-grid, .mb-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .mb-standout-col, .mb-service-card {
            background: #111116;
            border: 1px solid rgba(229, 168, 35, 0.3);
            border-radius: 10px;
            padding: 24px 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.25s ease;
            box-sizing: border-box;
        }
        .mb-standout-col:hover, .mb-service-card:hover {
            border-color: #e5a823;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(229, 168, 35, 0.25);
        }
        .mb-standout-badge-num {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffd700, #e5a823);
            color: #000000;
            font-size: 18px;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            box-shadow: 0 3px 10px rgba(229, 168, 35, 0.4);
            flex-shrink: 0;
        }
        .mb-standout-col-title, .mb-service-card-title {
            font-size: 17px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 10px;
        }
        .mb-service-card-title {
            color: #e5a823;
        }
        .mb-standout-col-desc, .mb-service-card-desc {
            font-size: 13px;
            color: #b3b3b3;
            line-height: 1.65;
            margin: 0;
        }
        .mb-why-trust-inner {
            background: linear-gradient(135deg, #ffd700 0%, #e5a823 50%, #b8860b 100%);
            color: #000000;
            border-radius: 14px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 6px 30px rgba(229, 168, 35, 0.3);
            box-sizing: border-box;
        }
        .mb-why-trust-title {
            font-size: 30px;
            font-weight: 900;
            color: #000000;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-why-trust-desc {
            font-size: 15px;
            color: #1a1a1a;
            line-height: 1.7;
            max-width: 1000px;
            margin: 0 auto 20px auto;
        }
        .mb-why-trust-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #000000;
            color: #e5a823 !important;
            border: 2px solid #000000;
            font-weight: 800;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 30px;
            border-radius: 8px;
            transition: all 0.2s ease;
            text-decoration: none;
        }
        .mb-why-trust-btn:hover {
            background: #111116;
            color: #ffffff !important;
            transform: translateY(-2px);
        }
        /* Hero Section for Inner Pages */
        .mb-hero-section {
            max-width: 1440px;
            margin: 30px auto 45px auto;
            padding: 0 15px;
            box-sizing: border-box;
        }
        .mb-hero-grid {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        .mb-hero-text {
            flex: 1.1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .mb-hero-text h1 {
            font-size: 32px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.3;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 16px;
        }
        .mb-hero-text p {
            font-size: 15px;
            color: #d1d5db;
            line-height: 1.8;
            margin-bottom: 14px;
        }
        .mb-hero-text p strong {
            color: #ffffff;
        }
        .mb-hero-img-wrap {
            flex: 0.9;
            display: flex;
            justify-content: center;
            align-items: center;
            min-width: 0;
        }
        .mb-hero-img-card {
            border: 2px solid #e5a823;
            border-radius: 14px;
            padding: 10px;
            background: #000000;
            box-shadow: 0 4px 25px rgba(229, 168, 35, 0.25);
            width: 100%;
            overflow: hidden;
            box-sizing: border-box;
        }
        .mb-hero-img-card img {
            width: 100% !important;
            height: auto !important;
            border-radius: 8px;
            display: block;
            object-fit: contain;
        }
        .mb-glowing-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(135deg, #ffd700 0%, #e5a823 50%, #b8860b 100%);
            color: #000000 !important;
            font-weight: 800;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 28px;
            border-radius: 8px;
            box-shadow: 0 4px 18px rgba(229, 168, 35, 0.4);
            transition: all 0.25s ease;
            text-decoration: none;
            width: fit-content;
        }
        .mb-glowing-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(229, 168, 35, 0.65);
            color: #000000 !important;
        }

        /* Inner Pages Contact Section (4 White Cards) */
        .mb-contact-section, .mb-why-section, .mb-features-section, .mb-issues-section, .mb-support-hours-section, .mb-faq-section, .mb-security-section {
            max-width: 1440px;
            margin: 50px auto;
            padding: 0 15px;
            box-sizing: border-box;
        }
        .mb-main-title {
            font-size: 28px;
            font-weight: 800;
            color: #e5a823;
            text-align: center;
            margin-bottom: 12px;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-subtitle {
            font-size: 15px;
            color: #b3b3b3;
            line-height: 1.7;
            text-align: center;
            margin-bottom: 25px;
        }
        .mb-btn-center {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }
        .mb-contact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .mb-contact-card {
            background: #ffffff;
            color: #111111;
            border-radius: 14px;
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border: 2px solid #e5a823;
            box-sizing: border-box;
        }
        .mb-card-top-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .mb-card-top-header h3 {
            font-size: 17px;
            font-weight: 800;
            color: #111111;
            margin: 0;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-card-icon {
            font-size: 22px;
            flex-shrink: 0;
        }
        .mb-contact-desc {
            font-size: 13.5px;
            color: #333333;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .mb-contact-bullets {
            list-style: disc;
            padding-left: 18px;
            font-size: 13px;
            color: #444444;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        .mb-contact-bullets li {
            margin-bottom: 4px;
        }
        .mb-card-footer-text {
            font-size: 12.5px;
            color: #555555;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        .mb-card-footer-text strong {
            color: #000000;
        }
        .mb-contact-card .mb-glowing-btn {
            width: 100%;
            text-align: center;
            box-sizing: border-box;
        }

        /* Yellow Section */
        .mb-yellow-section {
            background: linear-gradient(135deg, #ffd700 0%, #e5a823 50%, #b8860b 100%);
            color: #000000;
            border-radius: 14px;
            padding: 45px 30px;
            margin: 50px auto;
            text-align: center;
            box-shadow: 0 6px 30px rgba(229, 168, 35, 0.35);
            max-width: 1440px;
            box-sizing: border-box;
        }
        .mb-yellow-title {
            font-size: 28px;
            font-weight: 900;
            color: #000000;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 12px;
        }
        .mb-yellow-subtitle {
            font-size: 15px;
            color: #1a1a1a;
            line-height: 1.7;
            max-width: 900px;
            margin: 0 auto 20px auto;
            font-weight: 500;
        }
        .mb-yellow-bullets-wrap {
            max-width: 800px;
            margin: 0 auto 20px auto;
            text-align: left;
        }
        .mb-yellow-bullets {
            list-style: disc;
            padding-left: 25px;
            font-size: 14px;
            color: #111111;
            line-height: 1.8;
        }
        .mb-yellow-bullets li {
            margin-bottom: 6px;
        }
        .mb-yellow-notice {
            font-size: 14px;
            font-weight: 700;
            color: #000000;
            margin: 20px 0;
        }
        .mb-yellow-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .mb-black-badge-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #000000;
            color: #e5a823 !important;
            border: 2px solid #000000;
            font-weight: 800;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .mb-black-badge-btn:hover {
            background: #111116;
            color: #ffffff !important;
            transform: translateY(-2px);
        }

        /* Issues Section */
        .mb-issues-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 25px;
        }
        .mb-issue-card {
            background: #111116;
            border: 1px solid rgba(229, 168, 35, 0.3);
            border-radius: 12px;
            padding: 24px 20px;
            transition: all 0.25s ease;
            box-sizing: border-box;
        }
        .mb-issue-card:hover {
            border-color: #e5a823;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(229, 168, 35, 0.2);
        }
        .mb-issue-card h3 {
            font-size: 17px;
            font-weight: 800;
            color: #e5a823;
            margin-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-issue-card p {
            font-size: 13.5px;
            color: #b3b3b3;
            line-height: 1.6;
            margin: 0;
        }

        /* Support Hours Section */
        .mb-hours-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 20px;
        }
        .mb-gold-framed-box {
            border: 2px solid #e5a823;
            border-radius: 14px;
            background: #0c0c10;
            padding: 30px 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 20px rgba(229, 168, 35, 0.15);
            box-sizing: border-box;
        }
        .mb-box-title-pill {
            display: inline-block;
            background: linear-gradient(135deg, #ffd700, #e5a823);
            color: #000000;
            font-weight: 800;
            font-size: 14px;
            padding: 6px 18px;
            border-radius: 20px;
            margin-bottom: 18px;
            text-transform: uppercase;
        }
        .mb-hours-bullets {
            list-style: disc;
            padding-left: 20px;
            font-size: 14px;
            color: #d1d5db;
            line-height: 1.8;
            margin: 15px 0;
        }
        .mb-hours-bullets li {
            margin-bottom: 4px;
        }

        /* Numbered Grid for App Page */
        .mb-outer-gold-frame {
            border: 2px solid #e5a823;
            border-radius: 14px;
            background: #080808;
            padding: 35px 25px;
            margin: 30px 0;
            box-shadow: 0 4px 25px rgba(229, 168, 35, 0.15);
            box-sizing: border-box;
        }
        .mb-numbered-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .mb-row-2 {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .mb-num-card {
            background: #111116;
            border: 1px solid rgba(229, 168, 35, 0.3);
            border-radius: 10px;
            padding: 24px 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.25s ease;
            box-sizing: border-box;
        }
        .mb-num-card:hover {
            border-color: #e5a823;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(229, 168, 35, 0.25);
        }
        .mb-num-badge {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffd700, #e5a823);
            color: #000000;
            font-size: 18px;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            box-shadow: 0 3px 10px rgba(229, 168, 35, 0.4);
            flex-shrink: 0;
        }
        .mb-num-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-num-card p {
            font-size: 13px;
            color: #b3b3b3;
            line-height: 1.6;
            margin: 0;
        }

        /* OS Download Boxes (Android & iOS) */
        .mb-download-boxes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 25px;
        }
        .mb-os-card {
            background: #ffffff;
            color: #111111;
            border-radius: 14px;
            padding: 30px 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 2px solid #e5a823;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            text-align: left;
            box-sizing: border-box;
        }
        .mb-os-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 18px;
        }
        .mb-os-header h3 {
            font-size: 20px;
            font-weight: 800;
            color: #111111;
            margin: 0;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-os-steps {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }
        .mb-os-steps li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13.5px;
            color: #333333;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        .mb-os-steps li code {
            background: #eee;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 12px;
            color: #b7092b;
        }
        .mb-step-bullet {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #e5a823;
            color: #000;
            font-weight: 800;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .mb-os-card .mb-glowing-btn {
            width: 100%;
            text-align: center;
            box-sizing: border-box;
        }

        /* Features 6 Cards */
        .mb-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 25px;
        }
        .mb-feature-card {
            background: #ffffff;
            color: #111111;
            border-radius: 12px;
            padding: 24px 20px;
            border: 2px solid #e5a823;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            box-sizing: border-box;
        }
        .mb-feature-card h3 {
            font-size: 17px;
            font-weight: 800;
            color: #111111;
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }
        .mb-feature-card p {
            font-size: 13.5px;
            color: #444444;
            line-height: 1.6;
            margin: 0;
        }

        /* Security Section */
        .mb-security-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: center;
            margin-top: 25px;
        }
        .mb-sec-points {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }
        .mb-sec-points li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            color: #d1d5db;
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .mb-sec-icon {
            color: #e5a823;
            font-size: 16px;
            margin-top: 4px;
            flex-shrink: 0;
        }
        .mb-security-img-card {
            border: 2px solid #e5a823;
            border-radius: 14px;
            padding: 10px;
            background: #000;
            box-shadow: 0 4px 25px rgba(229, 168, 35, 0.2);
            box-sizing: border-box;
        }
        .mb-security-img-card img {
            width: 100% !important;
            height: auto !important;
            border-radius: 8px;
            display: block;
        }

        /* FAQ Accordion */
        .mb-faq-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .mb-faq-item {
            background: #111116;
            border: 1px solid rgba(229, 168, 35, 0.3);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.2s ease;
        }
        .mb-faq-question {
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 700;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            user-select: none;
        }
        .mb-faq-question:hover {
            color: #e5a823;
        }
        .mb-faq-icon {
            font-size: 12px;
            color: #e5a823;
            transition: transform 0.25s ease;
        }
        .mb-faq-item.active .mb-faq-icon {
            transform: rotate(180deg);
        }
        .mb-faq-answer {
            display: none;
            padding: 0 20px 18px 20px;
            font-size: 14px;
            color: #b3b3b3;
            line-height: 1.7;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .mb-faq-item.active .mb-faq-answer {
            display: block;
        }

        /* Responsive Breakpoints for Inner Pages */
        @media (max-width: 991px) {
            .mb-hero-grid, .mb-security-grid {
                flex-direction: column !important;
                display: flex !important;
                gap: 25px !important;
            }
            .mb-hero-text, .mb-hero-img-wrap {
                width: 100% !important;
                flex: none !important;
            }
            .mb-contact-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            .mb-numbered-cards-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            .mb-row-2 {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            .mb-issues-grid, .mb-features-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            .mb-hours-grid, .mb-download-boxes-grid {
                grid-template-columns: 1fr !important;
            }
            .mb-dark-section, .mb-dark-section.reverse {
                flex-direction: column !important;
                gap: 25px !important;
                margin: 30px auto !important;
            }
            .mb-dark-col-text, .mb-dark-col-img {
                width: 100% !important;
                flex: none !important;
            }
            .mb-standout-grid, .mb-services-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }
        @media (max-width: 640px) {
            .mb-contact-grid, .mb-issues-grid, .mb-features-grid, .mb-numbered-cards-grid, .mb-row-2, .mb-standout-grid, .mb-services-grid {
                grid-template-columns: 1fr !important;
            }
            .mb-hero-text h1 {
                font-size: 24px !important;
            }
            .mb-dark-heading, .mb-standout-title, .mb-services-title, .mb-why-trust-title, .mb-join-title, .mb-yellow-title, .mb-main-title {
                font-size: 22px !important;
            }
            .mb-why-trust-inner, .mb-join-card, .mb-standout-frame, .mb-yellow-section, .mb-outer-gold-frame {
                padding: 24px 15px !important;
            }
        }


/* ==========================================================================
   ADVANCED DIVERSE LAYOUT COMPONENTS (Theme Extensions)
   ========================================================================== */

/* 1. Stats Counter Strip */
.mb-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    background: radial-gradient(120% 120% at 50% 0%, #1a1a24 0%, #0c0c10 100%);
    border: 1px solid rgba(229, 168, 35, 0.3);
    border-radius: 14px;
    padding: 22px 20px;
    margin: 30px auto;
    max-width: 1440px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.mb-stat-item {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 0 10px;
}
.mb-stat-item:last-child {
    border-right: none;
}
.mb-stat-val {
    font-size: 26px;
    font-weight: 900;
    color: #e5a823;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}
.mb-stat-lbl {
    font-size: 12.5px;
    color: #9ca3af;
    margin-top: 4px;
    font-weight: 500;
}

/* 2. Centered Hero Banner */
.mb-hero-centered {
    text-align: center;
    max-width: 1000px;
    margin: 25px auto 40px auto;
    padding: 0 15px;
}
.mb-hero-centered h1 {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 16px;
}
.mb-hero-centered p {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 20px auto;
}
.mb-hero-centered-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.mb-hero-banner-frame {
    margin: 30px auto;
    border: 2px solid #e5a823;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1100px;
    box-shadow: 0 8px 35px rgba(229, 168, 35, 0.25);
}
.mb-hero-banner-frame img {
    width: 100% !important;
    height: auto !important;
    max-height: 440px !important;
    object-fit: cover !important;
    display: block;
}

/* 3. 3-Column VIP Tiers Cards */
.mb-vip-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 35px auto;
    max-width: 1440px;
}
.mb-vip-tier-card {
    background: #0f1015;
    border: 1px solid rgba(229, 168, 35, 0.3);
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.mb-vip-tier-card.featured {
    border: 2px solid #e5a823;
    background: radial-gradient(120% 120% at 50% 0%, #1f1b0e 0%, #0d0e12 100%);
    box-shadow: 0 8px 30px rgba(229, 168, 35, 0.25);
    transform: scale(1.02);
}
.mb-vip-tier-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #e5a823);
    color: #000000;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}
.mb-vip-tier-name {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 6px;
}
.mb-vip-tier-sub {
    font-size: 13px;
    color: #e5a823;
    margin-bottom: 18px;
    font-weight: 600;
}
.mb-vip-tier-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    space-y: 10px;
}
.mb-vip-tier-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #d1d5db;
    margin-bottom: 10px;
}
.mb-vip-tier-bullets li i {
    color: #e5a823;
    font-size: 14px;
}

/* 4. Horizontal Timeline Steps */
.mb-timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 35px auto;
    max-width: 1440px;
    position: relative;
}
.mb-timeline-step-card {
    background: #111116;
    border: 1px solid rgba(229, 168, 35, 0.25);
    border-radius: 12px;
    padding: 24px 18px;
    position: relative;
    transition: all 0.25s ease;
}
.mb-timeline-step-card:hover {
    border-color: #e5a823;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(229, 168, 35, 0.2);
}
.mb-step-num-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #e5a823);
    color: #000;
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 14px;
}
.mb-timeline-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}
.mb-timeline-step-desc {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* 5. Casino Games Visual Grid */
.mb-game-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px auto;
    max-width: 1440px;
}
.mb-game-tile {
    background: #101117;
    border: 1px solid rgba(229, 168, 35, 0.3);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.25s ease;
}
.mb-game-tile:hover {
    border-color: #e5a823;
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(229, 168, 35, 0.2);
}
.mb-game-tile-icon {
    font-size: 32px;
    flex-shrink: 0;
}
.mb-game-tile-info h3 {
    font-size: 17px;
    font-weight: 800;
    color: #e5a823;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}
.mb-game-tile-info p {
    font-size: 13px;
    color: #b3b3b3;
    line-height: 1.6;
    margin: 0;
}

/* 6. Author Bio Card */
.mb-author-card {
    background: radial-gradient(120% 120% at 50% 0%, #1b1c24 0%, #0c0c10 100%);
    border: 2px solid #e5a823;
    border-radius: 16px;
    padding: 35px 30px;
    margin: 30px auto;
    max-width: 1440px;
    display: flex;
    align-items: center;
    gap: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.mb-author-avatar-frame {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #e5a823;
    overflow: hidden;
    flex-shrink: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mb-author-avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mb-author-details {
    flex: 1;
}
.mb-author-badge {
    display: inline-block;
    background: rgba(229, 168, 35, 0.15);
    color: #ffd54f;
    border: 1px solid rgba(229, 168, 35, 0.4);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.mb-author-name {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
}
.mb-author-bio {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.7;
    margin: 0;
}

/* 7. Comparison Matrix Table */
.mb-comparison-wrap {
    margin: 35px auto;
    max-width: 1440px;
    overflow-x: auto;
}
.mb-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #0d0e12;
    border: 1px solid rgba(229, 168, 35, 0.3);
    border-radius: 12px;
    overflow: hidden;
}
.mb-comparison-table th {
    background: #171822;
    color: #e5a823;
    font-weight: 800;
    font-size: 14px;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(229, 168, 35, 0.3);
}
.mb-comparison-table td {
    padding: 14px 18px;
    font-size: 13.5px;
    color: #d1d5db;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mb-comparison-table tr:hover td {
    background: rgba(229, 168, 35, 0.05);
}

/* 8. 2-Column WhatsApp Live Simulation Box */
.mb-chat-sim-box {
    background: #111b21;
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.5);
    max-width: 500px;
    margin: 0 auto;
}
.mb-chat-sim-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
    margin-bottom: 16px;
}
.mb-chat-sim-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25d366;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
}
.mb-chat-sim-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}
.mb-chat-sim-status {
    font-size: 11px;
    color: #25d366;
}
.mb-chat-msg-in {
    background: #202c33;
    color: #e9edef;
    padding: 10px 14px;
    border-radius: 0 12px 12px 12px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 85%;
}
.mb-chat-msg-out {
    background: #005c4b;
    color: #e9edef;
    padding: 10px 14px;
    border-radius: 12px 0 12px 12px;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 85%;
    margin-left: auto;
}

/* Responsive Rules for New Components */
@media (max-width: 991px) {
    .mb-stats-strip {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .mb-stat-item:nth-child(2) {
        border-right: none !important;
    }
    .mb-vip-tiers-grid {
        grid-template-columns: 1fr !important;
    }
    .mb-vip-tier-card.featured {
        transform: none !important;
    }
    .mb-timeline-steps {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .mb-game-tiles-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .mb-author-card {
        flex-direction: column !important;
        text-align: center !important;
    }
}
@media (max-width: 640px) {
    .mb-stats-strip {
        grid-template-columns: 1fr !important;
    }
    .mb-stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-bottom: 12px;
    }
    .mb-stat-item:last-child {
        border-bottom: none;
    }
    .mb-timeline-steps, .mb-game-tiles-grid {
        grid-template-columns: 1fr !important;
    }
    .mb-hero-centered h1 {
        font-size: 24px !important;
    }
}
