:root {
    --primary: #4CC9F0;
    --secondary: #3A86FF;
    --accent: #80FFDB;
    --background: #08101A;
    --surface: #152231;
    --text-primary: #EDF8FF;
    --text-secondary: #A9C0D4;
    --font-heading: 'Playfair Display', sans-serif;
    --font-body: 'Lato', sans-serif;
    --radius: 8px;
    --transition: 0.3s ease;
}

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

body.thefortunewheelsite_body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

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

.thefortunewheelsite_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.thefortunewheelsite_btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
}

.thefortunewheelsite_btn_primary {
    background-color: var(--secondary);
    color: #fff;
}

.thefortunewheelsite_btn_primary:hover {
    background-color: #2b65c2;
}

.thefortunewheelsite_btn_secondary {
    background-color: var(--surface);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.thefortunewheelsite_btn_secondary:hover {
    background-color: var(--primary);
    color: var(--background);
}

.thefortunewheelsite_btn_accent {
    background-color: var(--accent);
    color: var(--background);
}

.thefortunewheelsite_btn_accent:hover {
    background-color: #6ee6c5;
}

.thefortunewheelsite_btn_outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
}

.thefortunewheelsite_btn_outline:hover {
    border-color: var(--text-primary);
}

.thefortunewheelsite_btn_full {
    width: 100%;
}

.thefortunewheelsite_btn_large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.thefortunewheelsite_input {
    width: 100%;
    padding: 10px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid var(--text-secondary);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-body);
}

.thefortunewheelsite_input:focus {
    outline: none;
    border-color: var(--primary);
}

.thefortunewheelsite_header {
    background-color: rgba(21, 34, 49, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(76, 201, 240, 0.2);
}

.thefortunewheelsite_header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.thefortunewheelsite_logo_text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
}

.thefortunewheelsite_nav_list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.thefortunewheelsite_nav_link {
    color: var(--text-primary);
    font-weight: bold;
}

.thefortunewheelsite_header_actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.thefortunewheelsite_wallet_compact {
    background-color: rgba(0,0,0,0.3);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

.thefortunewheelsite_wallet_value {
    color: var(--accent);
}

.thefortunewheelsite_burger_btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.thefortunewheelsite_burger_line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .thefortunewheelsite_nav_list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .thefortunewheelsite_nav_list.is-open {
        display: flex;
    }
    .thefortunewheelsite_burger_btn {
        display: block;
    }
    .thefortunewheelsite_header_actions {
        display: none;
    }
}

.thefortunewheelsite_age_gate_overlay,
.thefortunewheelsite_auth_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 16, 26, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.thefortunewheelsite_age_gate_overlay.is-active,
.thefortunewheelsite_auth_modal_overlay.is-active {
    visibility: visible;
    opacity: 1;
}

.thefortunewheelsite_age_gate_modal,
.thefortunewheelsite_auth_modal {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid var(--primary);
    position: relative;
}

.thefortunewheelsite_age_gate_title {
    color: var(--accent);
}

.thefortunewheelsite_age_gate_actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.thefortunewheelsite_auth_close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.thefortunewheelsite_form_group {
    text-align: left;
    margin-bottom: 15px;
}

.thefortunewheelsite_form_group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.thefortunewheelsite_main {
    flex: 1;
}

.thefortunewheelsite_hero_asymmetric {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.thefortunewheelsite_hero_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.thefortunewheelsite_hero_text_panel {
    background: rgba(21, 34, 49, 0.8);
    padding: 40px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    z-index: 10;
}

.thefortunewheelsite_hero_badge {
    display: inline-block;
    background: var(--accent);
    color: var(--background);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.thefortunewheelsite_hero_title {
    font-size: 3rem;
    line-height: 1.1;
    color: #fff;
}

.thefortunewheelsite_hero_subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.thefortunewheelsite_hero_actions {
    margin-bottom: 15px;
}

.thefortunewheelsite_hero_disclaimer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.thefortunewheelsite_hero_visual_panel {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    aspect-ratio: 16/9;
}

.thefortunewheelsite_hero_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .thefortunewheelsite_hero_content {
        grid-template-columns: 1fr;
    }
    .thefortunewheelsite_hero_title {
        font-size: 2rem;
    }
}

section {
    padding: 60px 0;
}

.thefortunewheelsite_section_title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
}

.thefortunewheelsite_section_desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.thefortunewheelsite_masonry_layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.thefortunewheelsite_game_card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(76, 201, 240, 0.2);
    width: calc(50% - 15px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .thefortunewheelsite_game_card {
        width: 100%;
    }
}

.thefortunewheelsite_game_visual {
    background: #000;
    position: relative;
    border-bottom: 2px solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 250px;
}

.thefortunewheelsite_wheel_container {
    position: relative;
    width: 200px;
    height: 200px;
}

.thefortunewheelsite_wheel_board {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 2.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.thefortunewheelsite_wheel_pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    font-size: 1.5rem;
    z-index: 10;
    text-shadow: 0 0 5px #000;
}

.thefortunewheelsite_slot_container {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1/1;
}

.thefortunewheelsite_slot_frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

.thefortunewheelsite_slot_reels {
    position: absolute;
    top: 25%;
    left: 10%;
    width: 80%;
    height: 50%;
    z-index: 30;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(0,0,0,0.5);
    overflow: hidden;
}

.thefortunewheelsite_slot_reel {
    width: 30%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thefortunewheelsite_slot_reel img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.1s;
}

.thefortunewheelsite_game_controls {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.thefortunewheelsite_game_title {
    font-size: 1.3rem;
    margin: 0;
}

.thefortunewheelsite_game_desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.thefortunewheelsite_roulette_bets {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thefortunewheelsite_bet_label {
    font-size: 0.85rem;
    background: rgba(255,255,255,0.05);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
}

.thefortunewheelsite_bet_label:hover {
    border-color: var(--primary);
}

.thefortunewheelsite_bet_selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.thefortunewheelsite_game_result {
    text-align: center;
    font-weight: bold;
    min-height: 1.5em;
    color: var(--accent);
}

.thefortunewheelsite_game_history {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

.thefortunewheelsite_center_action {
    text-align: center;
    margin-top: 30px;
}

.thefortunewheelsite_economy_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.thefortunewheelsite_eco_card {
    background: var(--surface);
    padding: 25px;
    border-radius: var(--radius);
    border-top: 3px solid var(--secondary);
}

.thefortunewheelsite_ranks_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.thefortunewheelsite_rank_card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}

.thefortunewheelsite_rank_icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.thefortunewheelsite_split_layout {
    display: flex;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .thefortunewheelsite_split_layout {
        flex-direction: column;
    }
}

.thefortunewheelsite_split_text, .thefortunewheelsite_split_data {
    flex: 1;
}

.thefortunewheelsite_data_row {
    margin-bottom: 20px;
}

.thefortunewheelsite_data_label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.thefortunewheelsite_data_bar {
    display: block;
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
}

.thefortunewheelsite_data_bar span {
    display: block;
    height: 100%;
    background: var(--primary);
}

.thefortunewheelsite_data_val {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.thefortunewheelsite_comparison_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.thefortunewheelsite_comparison_table th, .thefortunewheelsite_comparison_table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

.thefortunewheelsite_comparison_table th {
    background: var(--surface);
    color: var(--primary);
}

@media (max-width: 600px) {
    .thefortunewheelsite_comparison_table th, .thefortunewheelsite_comparison_table td {
        padding: 10px 5px;
        font-size: 0.9rem;
    }
}

.thefortunewheelsite_editorial_block p {
    margin-bottom: 15px;
}

.thefortunewheelsite_easter_egg_zone {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius);
}

.thefortunewheelsite_easter_trigger {
    width: 60px;
    cursor: pointer;
    transition: transform 0.3s;
}

.thefortunewheelsite_easter_trigger:hover {
    transform: scale(1.1);
}

.thefortunewheelsite_hidden {
    display: none;
    color: var(--accent);
    font-weight: bold;
    margin-top: 10px;
}

.thefortunewheelsite_accordion {
    max-width: 800px;
    margin: 0 auto;
}

.thefortunewheelsite_acc_item {
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    overflow: hidden;
}

.thefortunewheelsite_acc_trigger {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: var(--surface);
    color: var(--text-primary);
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-family: var(--font-body);
}

.thefortunewheelsite_acc_panel {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0,0,0,0.2);
}

.thefortunewheelsite_acc_trigger[aria-expanded="true"] + .thefortunewheelsite_acc_panel {
    padding: 15px 20px;
    max-height: 200px;
}

.thefortunewheelsite_footer {
    background-color: #050a10;
    border-top: 1px solid rgba(76, 201, 240, 0.2);
    padding: 40px 20px 20px;
    margin-top: auto;
}

.thefortunewheelsite_footer_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.thefortunewheelsite_footer h3, .thefortunewheelsite_footer h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.thefortunewheelsite_no_real_money_alert {
    color: var(--accent);
    font-weight: bold;
    font-size: 0.9rem;
}

.thefortunewheelsite_footer ul {
    list-style: none;
}

.thefortunewheelsite_footer ul li {
    margin-bottom: 8px;
}

.thefortunewheelsite_footer_bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.thefortunewheelsite_responsible_block {
    margin-bottom: 20px;
}

.thefortunewheelsite_partner_logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.thefortunewheelsite_partner_link {
    display: inline-block;
    padding: 5px;
    border-radius: 4px;
}

.thefortunewheelsite_partner_dark {
    background: #222;
}

.thefortunewheelsite_partner_light {
    background: #fff;
}

.thefortunewheelsite_partner_link img {
    height: 40px;
    width: auto;
}

.thefortunewheelsite_toast_container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thefortunewheelsite_toast {
    background: var(--surface);
    color: var(--text-primary);
    padding: 15px 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.thefortunewheelsite_page_content {
    padding: 40px 0;
}

.thefortunewheelsite_page_title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.thefortunewheelsite_content_section {
    margin-bottom: 40px;
}

.thefortunewheelsite_content_section h2 {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.thefortunewheelsite_team_list li {
    margin-bottom: 10px;
}

.thefortunewheelsite_contact_form {
    background: var(--surface);
    padding: 30px;
    border-radius: var(--radius);
}

.thefortunewheelsite_persistent_warning {
    background-color: var(--accent);
    color: var(--background);
    text-align: center;
    padding: 10px;
    font-weight: bold;
    position: sticky;
    top: 60px;
    z-index: 90;
}

.thefortunewheelsite_progression_bar {
    background: var(--surface);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    text-align: center;
}

.thefortunewheelsite_progress_track {
    height: 10px;
    background: rgba(0,0,0,0.5);
    border-radius: 5px;
    margin: 10px auto;
    max-width: 500px;
    overflow: hidden;
}

.thefortunewheelsite_progress_fill {
    height: 100%;
    background: var(--primary);
}

.thefortunewheelsite_legal_content p {
    margin-bottom: 15px;
}

/* footer-logo-contrast-guard-v2 */
a[href*="begambleaware.org"],
a[href*="gambleaware"] {
  background: #ffffff !important;
  color: #111111 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="begambleaware.org"] img,
a[href*="begambleaware.org"] picture,
a[href*="begambleaware.org"] .partner-logo,
img[src*="gambleaware"],
img[alt*="BeGambleAware" i],
img[alt*="GambleAware" i] {
  background: #ffffff !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="gamcare.org"] {
  background: #111111 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="gamcare.org"] img,
a[href*="gamcare.org"] picture,
a[href*="gamcare.org"] .partner-logo,
img[src*="gamcare"],
img[alt*="GamCare" i] {
  background: #111111 !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

/* social-game-layering-guard-v2 */
[data-home-live-game],
[data-mechanic],
[class*="game_wrapper"],
[class*="game-wrapper"],
[class*="game_board"],
[class*="game-board"],
[class*="slot_board"],
[class*="slot-board"],
[class*="roulette_board"],
[class*="roulette-board"] {
  position: relative !important;
  isolation: isolate !important;
}

[class*="slot"][class*="frame"],
[class*="slot"][class*="bg"],
[class*="slot"][class*="background"],
img[class*="slot_frame"],
img[class*="slot-frame"],
img[class*="frame_img"],
img[class*="frame-img"],
[data-game-mechanic="slot"] [class*="game_visual"] > img:first-child,
[data-game-mechanic="slot"] [class*="game-visual"] > img:first-child,
[data-game-mechanic="slot"] img[class*="game_bg"],
[data-game-mechanic="slot"] img[class*="game-bg"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

[class*="roulette"][class*="wheel"] img,
img[class*="roulette"][class*="wheel"] {
  position: relative !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

[data-game-mechanic="slot"] [class*="game_visual"],
[data-game-mechanic="slot"] [class*="game-visual"] {
  min-height: clamp(260px, 42vw, 560px) !important;
  aspect-ratio: 4 / 3 !important;
  position: relative !important;
  overflow: hidden !important;
}

[class*="slot_reels"],
[class*="slot-reels"],
[class*="reels"],
[data-home-live-game] [data-reel-index] {
  position: absolute !important;
  left: 10% !important;
  right: 10% !important;
  top: 35% !important;
  bottom: 35% !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: clamp(0.45rem, 1.4vw, 1.1rem) !important;
  z-index: 60 !important;
  pointer-events: none !important;
}

[class*="slot_reel"],
[class*="slot-reel"],
[class*="slot_symbol"],
[class*="slot-symbol"],
[class*="reel"] img,
[data-home-live-game] [data-reel-index] img {
  position: relative !important;
  z-index: 70 !important;
  display: block !important;
  width: min(82%, 120px) !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 92% !important;
  object-fit: contain !important;
}

[class*="slot_reel"],
[class*="slot-reel"],
[data-home-live-game] [data-reel-index] {
  min-height: clamp(72px, 10vw, 150px) !important;
  background: rgba(2, 8, 18, 0.88) !important;
  border: 2px solid rgba(255,255,255,0.78) !important;
  border-radius: 0.85rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16), 0 0.9rem 1.8rem rgba(0,0,0,0.35) !important;
}

[class*="roulette"][class*="pointer"],
[class*="wheel"][class*="pointer"],
[data-home-live-game] [data-roulette-bet],
[data-home-live-game] [class*="game_ui"],
[data-home-live-game] [class*="game-ui"],
[data-home-live-game] [class*="game_controls"],
[data-home-live-game] [class*="game-controls"],
[data-home-live-game] [class*="bet"],
[data-home-live-game] [class*="result"],
[data-home-live-game] [class*="status"],
[data-home-live-game] button,
[data-home-live-game] select,
[data-home-live-game] input {
  position: relative !important;
  z-index: 90 !important;
}
