:root {
  --primary: #E63956;
  --secondary: #8C1D3A;
  --accent: #FFB86B;
  --bg: #0D0D12;
  --surface: #1A1A24;
  --text-primary: #FAF1F3;
  --text-secondary: #C6B4BA;
  --border: #332d30;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --partner-light: #ffffff;
  --partner-dark: #222222;
}

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

body.waitforthenextround_body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.waitforthenextround_container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.waitforthenextround_btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}

.waitforthenextround_btn_primary {
  background-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(230, 57, 86, 0.3);
}

.waitforthenextround_btn_primary:hover {
  background-color: #d12c47;
  transform: translateY(-2px);
}

.waitforthenextround_btn_accent {
  background-color: var(--accent);
  color: #000;
}

.waitforthenextround_btn_accent:hover {
  background-color: #e6a45c;
}

.waitforthenextround_btn_outline {
  background-color: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.waitforthenextround_btn_outline:hover {
  background-color: rgba(255, 184, 107, 0.1);
}

.waitforthenextround_link_btn {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* Header */
.waitforthenextround_header {
  background-color: var(--surface);
  border-bottom: 2px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

.waitforthenextround_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.waitforthenextround_logo img {
  height: 40px;
}

.waitforthenextround_nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.waitforthenextround_nav_list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.waitforthenextround_nav_link {
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.waitforthenextround_nav_link.active,
.waitforthenextround_nav_link:hover {
  color: var(--accent);
}

.waitforthenextround_header_status {
  color: var(--accent);
  font-size: 0.9rem;
  border: 1px solid var(--secondary);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.waitforthenextround_burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.waitforthenextround_burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  position: absolute;
  transition: all 0.3s;
}

.waitforthenextround_burger span:nth-child(1) { top: 0; }
.waitforthenextround_burger span:nth-child(2) { top: 9px; }
.waitforthenextround_burger span:nth-child(3) { top: 18px; }

.waitforthenextround_burger[aria-expanded="true"] span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.waitforthenextround_burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.waitforthenextround_burger[aria-expanded="true"] span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* Wallet Floating Widget */
.waitforthenextround_wallet_widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--surface);
  border: 2px solid var(--accent);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  z-index: 90;
  font-family: var(--font-heading);
}

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

.waitforthenextround_wallet_balance {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
}

.waitforthenextround_wallet_currency {
  color: var(--primary);
  font-weight: 700;
}

/* Hero - Gradient Solid Bottom Dock */
.waitforthenextround_hero_solid {
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
  padding: 6rem 0 0 0;
  border-bottom: 2px solid var(--secondary);
  text-align: center;
}

.waitforthenextround_hero_content {
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.waitforthenextround_hero_title {
  font-size: 3.5rem;
  color: var(--accent);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

.waitforthenextround_hero_subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.waitforthenextround_hero_proofs {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.waitforthenextround_proof_card {
  background: rgba(26, 26, 36, 0.8);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.waitforthenextround_proof_card img {
  width: 32px;
  height: 32px;
}

.waitforthenextround_hero_dock {
  background: var(--surface);
  border-top: 2px solid var(--secondary);
  border-left: 2px solid var(--secondary);
  border-right: 2px solid var(--secondary);
  border-radius: 12px 12px 0 0;
  padding: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.waitforthenextround_section {
  padding: 5rem 0;
}

.waitforthenextround_bg_surface {
  background-color: var(--surface);
}

.waitforthenextround_section_title {
  font-size: 2.2rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 1rem;
}

.waitforthenextround_section_desc {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

/* Editorial Grid */
.waitforthenextround_editorial_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.waitforthenextround_editorial_card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 4px;
  border-top: 3px solid var(--secondary);
}

/* Text Panels */
.waitforthenextround_text_panel {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg);
  padding: 2.5rem;
  border-left: 4px solid var(--primary);
  border-radius: 0 4px 4px 0;
}

/* Testimonials */
.waitforthenextround_testimonials {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.waitforthenextround_testimonial {
  background: var(--bg);
  padding: 2rem;
  max-width: 400px;
  border: 1px solid var(--secondary);
  font-style: italic;
  position: relative;
}

.waitforthenextround_testimonial footer {
  margin-top: 1rem;
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

/* Split Layouts */
.waitforthenextround_split_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.waitforthenextround_split_text .waitforthenextround_status_msg {
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
}

.waitforthenextround_placeholder_box {
  background: var(--surface);
  border: 2px dashed var(--secondary);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

/* Data Grid */
.waitforthenextround_data_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.waitforthenextround_data_card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-top: 3px solid var(--primary);
}

/* Info Boxes */
.waitforthenextround_split_info .waitforthenextround_info_box {
  background: var(--surface);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent);
}

/* Footer */
.waitforthenextround_footer {
  background-color: #08080b;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.waitforthenextround_footer_identity {
  margin-bottom: 2rem;
}

.waitforthenextround_footer_disclaimer {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.waitforthenextround_footer_links_area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.waitforthenextround_footer_legal_links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.waitforthenextround_footer_partners h4 {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.waitforthenextround_partner_logos {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.waitforthenextround_partner_logos a {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 4px;
  background: var(--partner-light);
}

.waitforthenextround_partner_gamcare {
  background: var(--partner-dark) !important;
}

.waitforthenextround_partner_logos img {
  height: 40px;
  object-fit: contain;
}

.waitforthenextround_footer_copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
}

/* Modals */
.waitforthenextround_modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.waitforthenextround_modal.active {
  display: flex;
}

.waitforthenextround_modal_content {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 8px;
  border: 2px solid var(--secondary);
  max-width: 500px;
  width: 100%;
  position: relative;
}

.waitforthenextround_age_gate .waitforthenextround_modal_content {
  text-align: center;
  max-width: 600px;
}

.waitforthenextround_modal_close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
}

.waitforthenextround_input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  border-radius: 4px;
}

.waitforthenextround_auth_switch {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.waitforthenextround_reward_text {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 1rem;
  text-align: center;
}

/* Contact Form */
.waitforthenextround_contact_form textarea {
  resize: vertical;
}

/* Games Common */
.waitforthenextround_games_zone {
  background-color: var(--bg);
}

.waitforthenextround_games_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.waitforthenextround_game_card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.waitforthenextround_game_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--secondary);
  padding-bottom: 0.5rem;
}

.waitforthenextround_game_title {
  font-size: 1.4rem;
  margin: 0;
  color: var(--accent);
}

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

.waitforthenextround_game_board_area {
  background: var(--bg);
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
  position: relative;
  z-index: 10;
}

.waitforthenextround_game_controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 80;
}

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

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

/* Betting Controls */
.waitforthenextround_bet_options {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.waitforthenextround_bet_options_vertical {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.waitforthenextround_bet_btn {
  background: var(--bg);
  border: 1px solid var(--secondary);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
}

.waitforthenextround_bet_btn.active,
.waitforthenextround_bet_btn:hover {
  background: var(--secondary);
  border-color: var(--primary);
}

.waitforthenextround_bet_selector_compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg);
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--secondary);
  margin-bottom: 1rem;
}

.waitforthenextround_bet_adjust {
  background: var(--surface);
  color: var(--accent);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
}

.waitforthenextround_current_bet {
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 50px;
  text-align: center;
}

/* Roulette specific */
.waitforthenextround_roulette_container {
  position: relative;
  width: 200px;
  height: 200px;
}

.waitforthenextround_roulette_wheel {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 2.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.waitforthenextround_roulette_pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 30px;
  background: var(--primary);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 90;
}

/* Slot specific */
.waitforthenextround_slot_container {
  display: flex;
  gap: 1rem;
  background: #111;
  padding: 1rem;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  position: relative;
}

.waitforthenextround_slot_payline {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(230, 57, 86, 0.6);
  transform: translateY(-50%);
  z-index: 50;
  box-shadow: 0 0 10px var(--primary);
}

.waitforthenextround_slot_payline_red {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(140, 29, 58, 0.8);
  transform: translateY(-50%);
  z-index: 50;
}

.waitforthenextround_slot_reel {
  width: 80px;
  height: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.waitforthenextround_slot_reel img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

/* Animations */
@keyframes spinReel {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.is-spinning img {
  animation: spinReel 0.15s linear infinite;
}

/* Primary Conversion Page (Lobby Stack) */
.waitforthenextround_lobby_bg {
  background: var(--bg);
}

.waitforthenextround_page_title {
  text-align: center;
  margin-top: 2rem;
  color: var(--accent);
}

.waitforthenextround_warning_banner {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 0.8rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-weight: bold;
}

.waitforthenextround_lobby_stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.waitforthenextround_game_layout_horizontal {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.waitforthenextround_game_layout_horizontal .waitforthenextround_game_board_area {
  flex: 1;
}

.waitforthenextround_game_layout_horizontal .waitforthenextround_game_controls_area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--secondary);
}

.waitforthenextround_payout_hint {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}

.waitforthenextround_easter_egg_trigger {
  align-self: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.waitforthenextround_easter_egg_trigger img {
  width: 60px;
  opacity: 0.7;
}

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

/* Notification Toast */
.waitforthenextround_toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.waitforthenextround_toast.show {
  opacity: 1;
}

/* Policy Pages */
.waitforthenextround_policy_main {
  padding: 3rem 0;
}

.waitforthenextround_policy_content h2 {
  margin-top: 2rem;
  color: var(--accent);
}

.waitforthenextround_policy_content p, 
.waitforthenextround_policy_content ul {
  margin-bottom: 1rem;
}

.waitforthenextround_policy_content ul {
  margin-left: 2rem;
}

/* Media Queries */
@media (max-width: 1280px) {
  .waitforthenextround_wallet_widget {
    bottom: 1rem;
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .waitforthenextround_burger {
    display: block;
  }

  .waitforthenextround_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface);
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 2px solid var(--secondary);
  }

  .waitforthenextround_nav.is-open {
    display: flex;
  }

  .waitforthenextround_nav_list {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .waitforthenextround_nav_link {
    padding: 0.5rem;
    display: block;
  }

  .waitforthenextround_hero_title {
    font-size: 2.5rem;
  }

  .waitforthenextround_hero_dock {
    flex-direction: column;
    padding: 1.5rem;
  }

  .waitforthenextround_split_layout,
  .waitforthenextround_data_grid {
    grid-template-columns: 1fr;
  }

  .waitforthenextround_games_grid {
    grid-template-columns: 1fr;
  }

  .waitforthenextround_game_layout_horizontal {
    flex-direction: column;
  }

  .waitforthenextround_text_panel {
    border-left: none;
    border-top: 4px solid var(--primary);
    border-radius: 0 0 4px 4px;
    padding: 1.5rem;
  }

  .waitforthenextround_footer_links_area {
    flex-direction: column;
  }

  .waitforthenextround_wallet_widget {
    position: static;
    margin: 1rem auto;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .waitforthenextround_hero_title {
    font-size: 2rem;
  }
  
  .waitforthenextround_slot_reel {
    width: 60px;
    height: 60px;
  }
}

/* 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;
}
