:root {
  --primary: #0ea5a8;
  --secondary: #1f6f78;
  --accent: #d88c4a;
  --bg-dark: #08161a;
  --surface: #13272c;
  --surface-light: #1a3636;
  --text-main: #e9f5f5;
  --text-muted: #a6bdbe;
  --font-head: "Playfair Display", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

body.onlinegamesit_body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

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

.onlinegamesit_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.onlinegamesit_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

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

.onlinegamesit_btn-primary:hover {
  background-color: #e6a060;
  transform: translateY(-2px);
}

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

.onlinegamesit_btn-secondary:hover {
  background-color: var(--accent);
  color: #000;
}

.onlinegamesit_btn-spin {
  background-color: var(--primary);
  color: #fff;
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  margin-top: 10px;
}

.onlinegamesit_btn-spin:hover {
  background-color: #12c1c4;
}

.onlinegamesit_btn-spin:disabled {
  background-color: #555;
  cursor: not-allowed;
}

.onlinegamesit_h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.onlinegamesit_h1-highlight {
  color: var(--accent);
}

.onlinegamesit_section-title {
  font-family: var(--font-head);
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--primary);
  text-align: center;
}

/* Header */
.onlinegamesit_header {
  background-color: rgba(8, 22, 26, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--surface-light);
  padding: 15px 0;
}

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

.onlinegamesit_logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.onlinegamesit_nav-list {
  display: flex;
  gap: 25px;
  list-style: none;
}

.onlinegamesit_nav-link {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
}

.onlinegamesit_nav-link.is-active {
  color: var(--accent);
}

.onlinegamesit_header-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.onlinegamesit_wallet-compact {
  background-color: var(--surface);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.onlinegamesit_wallet-balance {
  color: var(--accent);
  font-weight: 700;
}

.onlinegamesit_btn-guest {
  background: none;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  padding: 6px 14px;
  font-size: 0.8rem;
}

.onlinegamesit_btn-guest:hover {
  color: #fff;
  border-color: #fff;
}

.onlinegamesit_burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.onlinegamesit_burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: var(--transition);
}

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

/* Hero */
.onlinegamesit_hero-diagonal {
  position: relative;
  padding: 80px 0 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.onlinegamesit_hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.onlinegamesit_hero-diagonal-band {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: var(--surface);
  transform: rotate(-15deg);
  z-index: 2;
  border-left: 5px solid var(--accent);
  opacity: 0.9;
}

.onlinegamesit_hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.onlinegamesit_badge-18 {
  display: inline-block;
  background: #ff3333;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
  margin-bottom: 15px;
}

.onlinegamesit_hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 500px;
}

.onlinegamesit_no-money-notice {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  border-left: 3px solid var(--primary);
  padding-left: 15px;
  max-width: 450px;
}

.onlinegamesit_hero-proof-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.onlinegamesit_proof-card {
  background: rgba(19, 39, 44, 0.8);
  border: 1px solid var(--primary);
  padding: 20px;
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
  transform: rotate(2deg);
  transition: var(--transition);
}

.onlinegamesit_proof-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.onlinegamesit_proof-title {
  color: var(--accent);
  font-family: var(--font-head);
  margin-bottom: 5px;
}

.onlinegamesit_proof-desc {
  font-size: 0.9rem;
}

/* Sections */
.onlinegamesit_section {
  padding: 80px 0;
}

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

.onlinegamesit_center {
  text-align: center;
}

.onlinegamesit_section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-muted);
}

.onlinegamesit_grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.onlinegamesit_grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.onlinegamesit_card {
  background: var(--bg-dark);
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--surface-light);
}

.onlinegamesit_card h4 {
  color: var(--accent);
  margin-bottom: 10px;
  font-family: var(--font-head);
}

/* Games Lobby */
.onlinegamesit_social-games-zone {
  padding: 60px 0;
}

.onlinegamesit_live-games-stack {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 860px;
  width: 100%;
  margin: 0 auto 40px;
  gap: 28px;
}

.onlinegamesit_lobby-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.onlinegamesit_game-card {
  background-color: var(--surface);
  border: 1px solid var(--secondary);
  border-radius: var(--radius);
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}

.onlinegamesit_game-header {
  padding: 15px 20px;
  background-color: var(--surface-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--bg-dark);
}

.onlinegamesit_game-title {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1.2rem;
}

.onlinegamesit_game-badge {
  background: var(--primary);
  color: #000;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

.onlinegamesit_game-hook {
  padding: 15px 20px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.onlinegamesit_game-stage-wrapper {
  padding: 20px;
}

/* Wheel Game Specifics */
[data-wheel-stage="true"] {
  aspect-ratio: 1 / 1;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-areas: "board";
  border-radius: 50%;
  background-color: var(--bg-dark);
  border: 4px solid var(--accent);
}

[data-wheel-img="true"] {
  grid-area: board;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transform-origin: center;
}

[data-wheel-pointer="true"] {
  grid-area: board;
  place-self: start center;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid #fff;
  transform: translateY(-10px);
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Slot Game Specifics */
[data-slot-stage="true"] {
  min-height: clamp(240px, 18vw, 320px);
  background-color: var(--bg-dark);
  border: 4px solid var(--secondary);
  border-radius: 4px;
  position: relative;
  padding: 10px;
  display: flex;
  align-items: center;
}

[data-slot-reel-window="true"] {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
}

[data-slot-reel="true"] {
  min-width: 0;
  background: #000;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

[data-slot-symbol="true"] {
  display: block;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.onlinegamesit_slot-payline {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(216, 140, 74, 0.7);
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

/* Controls */
.onlinegamesit_game-controls {
  padding: 0 20px 20px;
}

.onlinegamesit_bet-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  background: var(--bg-dark);
  padding: 10px;
  border-radius: 4px;
}

.onlinegamesit_bet-select {
  background: var(--surface-light);
  color: #fff;
  border: 1px solid var(--secondary);
  padding: 5px 10px;
  border-radius: 4px;
}

.onlinegamesit_choice-selector {
  margin-bottom: 15px;
}

.onlinegamesit_choice-selector label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.onlinegamesit_choices {
  display: flex;
  gap: 10px;
}

.onlinegamesit_choice-btn {
  flex: 1;
  padding: 8px;
  background: var(--bg-dark);
  border: 1px solid var(--secondary);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.85rem;
}

.onlinegamesit_choice-btn.is-selected {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(216, 140, 74, 0.1);
}

.onlinegamesit_game-footer {
  padding: 15px 20px;
  background: var(--bg-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  border-top: 1px solid var(--surface-light);
}

.onlinegamesit_game-result {
  color: var(--accent);
  font-weight: bold;
}

/* Economy Guide */
.onlinegamesit_economy-guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.onlinegamesit_eco-step {
  text-align: center;
  padding: 30px;
  border: 1px dashed var(--secondary);
  border-radius: var(--radius);
  position: relative;
}

.onlinegamesit_eco-num {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.onlinegamesit_eco-step h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  color: #fff;
}

/* Location Module */
.onlinegamesit_location-module {
  display: flex;
  background: var(--bg-dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--secondary);
}

.onlinegamesit_location-img {
  width: 50%;
  object-fit: cover;
}

.onlinegamesit_location-info {
  padding: 40px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.onlinegamesit_location-info h3 {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Forms */
.onlinegamesit_form-group {
  margin-bottom: 20px;
}

.onlinegamesit_form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.onlinegamesit_input {
  width: 100%;
  padding: 12px;
  background: var(--bg-dark);
  border: 1px solid var(--secondary);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-body);
}

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

.onlinegamesit_input.is-invalid {
  border-color: #e74c3c;
}

/* Footer */
.onlinegamesit_footer {
  background-color: #050b0d;
  padding: 60px 0 20px;
  border-top: 2px solid var(--surface-light);
}

.onlinegamesit_footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.onlinegamesit_footer h3,
.onlinegamesit_footer h4 {
  font-family: var(--font-head);
  color: #fff;
  margin-bottom: 20px;
}

.onlinegamesit_footer-identity p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.onlinegamesit_footer-links ul {
  list-style: none;
}

.onlinegamesit_footer-links li {
  margin-bottom: 10px;
}

.onlinegamesit_footer-compliance p {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 15px;
}

.onlinegamesit_partner-logos {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.onlinegamesit_partner-logos a {
  display: inline-block;
  padding: 10px;
  border-radius: 4px;
}

.onlinegamesit_partner-link-dark {
  background: #222;
}

.onlinegamesit_partner-logos img {
  height: 30px;
  width: auto;
}

.onlinegamesit_footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--surface-light);
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

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

.onlinegamesit_modal-content {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--primary);
  max-width: 500px;
  width: 90%;
  position: relative;
}

.onlinegamesit_modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.onlinegamesit_age-gate-content {
  text-align: center;
}

.onlinegamesit_age-gate-content h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.onlinegamesit_age-gate-content p {
  margin-bottom: 30px;
}

.onlinegamesit_age-gate-content button {
  margin: 5px;
}

/* Page Headers */
.onlinegamesit_page-header {
  background-color: var(--surface-light);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--primary);
}

.onlinegamesit_policy-shell p {
  margin-bottom: 15px;
}

/* Easter Egg */
.onlinegamesit_hidden-trigger {
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
}

.onlinegamesit_hidden-trigger:hover {
  opacity: 1;
}

.onlinegamesit_toast-hidden {
  display: none;
  margin-top: 20px;
  color: var(--accent);
  font-weight: bold;
}

/* Animations */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(3600deg);
  }
}

@keyframes spin-snap {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1080deg);
  }
}

.is-spinning [data-wheel-img] {
  animation: spin 2.5s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}

.is-spinning-fast [data-wheel-img] {
  animation: spin-snap 1.5s ease-out forwards;
}

/* Responsive */
@media (max-width: 1024px) {
  .onlinegamesit_footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .onlinegamesit_header-inner {
    flex-wrap: wrap;
  }

  .onlinegamesit_burger {
    display: block;
  }

  .onlinegamesit_nav {
    display: none;
    width: 100%;
    order: 3;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--surface-light);
  }

  .onlinegamesit_nav.is-open {
    display: block;
  }

  .onlinegamesit_nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .onlinegamesit_hero-content {
    grid-template-columns: 1fr;
  }

  .onlinegamesit_hero-diagonal-band {
    display: none;
  }

  .onlinegamesit_grid-3,
  .onlinegamesit_grid-2,
  .onlinegamesit_economy-guide,
  .onlinegamesit_lobby-masonry {
    grid-template-columns: 1fr;
  }

  .onlinegamesit_location-module {
    flex-direction: column;
  }

  .onlinegamesit_location-img,
  .onlinegamesit_location-info {
    width: 100%;
  }

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

@media (max-width: 480px) {
  [data-slot-stage="true"] {
    min-height: 200px;
  }

  .onlinegamesit_h1 {
    font-size: 2rem;
  }
}

/* footer-logo-contrast-guard-v2 */
a[href*="begambleaware.org"],
a[href*="gambleaware"] {
  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] {
  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-v4 */
[data-home-live-game],
[data-game-card],
[data-slot-game],
[data-slot-stage],
[data-wheel-game],
[data-wheel-stage],
[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;
  max-width: 100% !important;
  min-width: 0 !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"],
[data-wheel-img] {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transform-origin: center !important;
  border-radius: 50% !important;
  clip-path: circle(50% at 50% 50%) !important;
  pointer-events: none !important;
}

[data-wheel-stage],
[data-wheel-game] [class*="wheel_stage"],
[data-wheel-game] [class*="wheel-stage"],
[class*="wheel_board"],
[class*="wheel-board"],
[class*="roulette_board"],
[class*="roulette-board"] {
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  place-items: center !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;
}

[data-slot-stage],
[data-slot-game] [class*="slot_stage"],
[data-slot-game] [class*="slot-stage"],
[data-game-mechanic="slot"] [class*="slot_board"],
[data-game-mechanic="slot"] [class*="slot-board"] {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  align-items: center !important;
}

[data-slot-reel-window],
[data-slot-game] [class*="slot_reel_window"],
[data-slot-game] [class*="slot-reel-window"],
[data-slot-game] [class*="reel_window"],
[data-slot-game] [class*="reel-window"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: clamp(170px, 22vw, 320px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: clamp(0.55rem, 1.5vw, 1.2rem) !important;
  overflow: hidden !important;
  position: relative !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;
}

[data-slot-symbol],
[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: clamp(72px, 62%, 170px) !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 88% !important;
  object-fit: contain !important;
}

[class*="slot_reel"]:not([class*="window"]),
[class*="slot-reel"]:not([class*="window"]),
[data-slot-reel],
[data-home-live-game] [data-reel-index] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  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-wheel-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;
}
