:root {
  --zenveex-primary: #1DBA84;
  --zenveex-secondary: #0E7C66;
  --zenveex-accent: #F3C85A;
  --zenveex-bg: #081311;
  --zenveex-surface: #12211D;
  --zenveex-text: #EAF7F2;
  --zenveex-text-muted: #A9C5BB;
  --zenveex-font-heading: 'Noto Serif', serif;
  --zenveex-font-body: 'Inter', sans-serif;
  --zenveex-radius: 8px;
  --zenveex-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  --zenveex-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --zenveex-acid-lime: #CCFF00;
  --zenveex-acid-pink: #FF00FF;
  --zenveex-acid-blue: #0000FF;
}

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

html {
  font-family: var(--zenveex-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--zenveex-text);
  background-color: var(--zenveex-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--zenveex-font-heading);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

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

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

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

.zenveex_narrow-container {
  max-width: 800px;
}

.zenveex_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--zenveex-font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #000;
  border-radius: 0;
  cursor: pointer;
  transition: var(--zenveex-transition);
  text-align: center;
  min-height: 44px;
  box-shadow: 4px 4px 0 #000;
}

.zenveex_btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
}

.zenveex_btn-primary {
  background-color: var(--zenveex-acid-lime);
  color: #000;
}

.zenveex_btn-primary:hover {
  background-color: var(--zenveex-acid-pink);
  color: #fff;
}

.zenveex_btn-secondary {
  background-color: #fff;
  color: #000;
}

.zenveex_btn-accent {
  background-color: var(--zenveex-acid-pink);
  color: #fff;
}

.zenveex_header {
  background-color: #fff;
  color: #000;
  border-bottom: 2px solid #000;
  position: sticky;
  top: 0;
  z-index: 100;
}

.zenveex_header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.zenveex_logo {
  font-family: var(--zenveex-font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.zenveex_logo:hover {
  color: var(--zenveex-acid-blue);
}

.zenveex_nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.zenveex_nav-link {
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.zenveex_nav-link:hover, .zenveex_nav-link.is-active {
  color: var(--zenveex-acid-pink);
}

.zenveex_burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: space-around;
}

.zenveex_burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: var(--zenveex-transition);
}

.zenveex_hero {
  background: linear-gradient(135deg, var(--zenveex-acid-blue), var(--zenveex-acid-pink));
  color: #fff;
  border-bottom: 2px solid #000;
  position: relative;
  overflow: hidden;
}

.zenveex_hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.zenveex_ticker {
  background: var(--zenveex-acid-lime);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem;
  border: 2px solid #000;
  margin-bottom: 2rem;
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 4px 4px 0 #000;
}

.zenveex_hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 4px 4px 0 #000;
  margin-bottom: 1.5rem;
  word-break: break-all;
}

.zenveex_hero-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  background: #000;
  color: #fff;
  padding: 1rem;
  display: inline-block;
  margin-bottom: 2rem;
}

.zenveex_framed-panel {
  background: #fff;
  border: 4px solid #000;
  padding: 1rem;
  box-shadow: 8px 8px 0 #000;
  transform: rotate(-2deg);
}

.zenveex_hero-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 2px solid #000;
}

.zenveex_section {
  padding: 4rem 0;
}

.zenveex_bg-surface {
  background-color: #fff;
  color: #000;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.zenveex_section-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}

.zenveex_section-lead {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--zenveex-text-muted);
}

.zenveex_bg-surface .zenveex_section-title,
.zenveex_bg-surface .zenveex_section-lead {
    color: #000;
}

.zenveex_grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.zenveex_social-games-zone {
  display: grid;
  grid-template-columns: 1fr;
  max-width: clamp(820px, 72vw, 900px);
  width: 100%;
  margin-inline: auto;
  gap: clamp(20px, 3vw, 28px);
  padding-inline: clamp(14px, 3vw, 24px);
}

.zenveex_game-card {
  background: #fff;
  border: 4px solid #000;
  box-shadow: 8px 8px 0 #000;
  color: #000;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.zenveex_game-header {
  background: var(--zenveex-acid-lime);
  padding: 1rem;
  border-bottom: 2px solid #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zenveex_game-header h3 {
  margin: 0;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.zenveex_badge {
  background: #000;
  color: var(--zenveex-acid-lime);
  padding: 0.25rem 0.75rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.zenveex_game-stage {
  background: #111;
  position: relative;
  padding: 1rem;
  border-bottom: 2px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

[data-slot-stage] {
  min-height: clamp(240px, 18vw, 320px);
}

.zenveex_slot-reel-window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.zenveex_slot-payline {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 0, 255, 0.5);
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
}

.zenveex_slot-reel {
  background: #000;
  border: 2px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: 10px;
}

.zenveex_slot-symbol {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

[data-wheel-stage] {
  aspect-ratio: 1 / 1;
  max-width: 360px;
  margin: 0 auto;
  display: grid;
  grid-template-areas: "wheel";
  place-items: center;
  padding: 2rem;
}

.zenveex_wheel-img {
  grid-area: wheel;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transform-origin: center;
  border: 4px solid var(--zenveex-acid-lime);
}

.zenveex_wheel-pointer {
  grid-area: wheel;
  place-self: start center;
  color: var(--zenveex-acid-pink);
  font-size: 2rem;
  font-weight: bold;
  z-index: 100;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  transform: translateY(-10px);
}

.zenveex_game-controls {
  padding: 1.5rem;
  background: #f4f4f4;
}

.zenveex_control-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.zenveex_bet-select {
  padding: 0.5rem;
  font-weight: 700;
  border: 2px solid #000;
  background: #fff;
  min-width: 120px;
  height: 44px;
}

.zenveex_roulette-choices {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.zenveex_roulette-choices label {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.zenveex_game-status {
  background: #000;
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #000;
  font-family: monospace;
  font-size: 1.1rem;
}

.zenveex_result {
  margin: 0;
  color: var(--zenveex-acid-lime);
}

.zenveex_history {
  margin: 0;
  color: #aaa;
  font-size: 0.9rem;
}

.zenveex_cta-container {
    text-align: center;
    margin-top: 3rem;
}

.zenveex_proof-card {
    background: var(--zenveex-acid-pink);
    color: #fff;
    border: 4px solid #000;
    padding: 2rem;
    box-shadow: 8px 8px 0 #000;
}

.zenveex_proof-card h3 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 #000;
}

.zenveex_stat-row {
    background: #000;
    color: #fff;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #000;
}

.zenveex_stat-row strong {
    color: var(--zenveex-acid-lime);
    font-size: 1.25rem;
}

.zenveex_list {
    list-style: none;
    padding: 0;
}

.zenveex_list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.zenveex_list li::before {
    content: "►";
    position: absolute;
    left: 0;
    color: var(--zenveex-acid-pink);
}

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

.zenveex_eco-card {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 1.5rem;
    box-shadow: 4px 4px 0 #000;
}

.zenveex_eco-card h4 {
    color: var(--zenveex-acid-blue);
    text-transform: uppercase;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
}

.zenveex_faq-teaser {
    background: var(--zenveex-acid-lime);
    border: 4px solid #000;
    padding: 2rem;
    box-shadow: 8px 8px 0 #000;
}

.zenveex_wallet-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  color: #fff;
  border-top: 2px solid var(--zenveex-acid-lime);
  padding: 0.5rem 1rem;
  z-index: 90;
  display: flex;
  justify-content: center;
}

.zenveex_wallet-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 700;
}

.zenveex_wallet-balance {
  color: var(--zenveex-acid-lime);
}

.zenveex_footer {
  background: #fff;
  color: #000;
  border-top: 4px solid #000;
  padding: 4rem 0 2rem;
  margin-bottom: 50px; /* space for dock */
}

.zenveex_footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.zenveex_footer h3, .zenveex_footer h4 {
  text-transform: uppercase;
  color: var(--zenveex-acid-blue);
  margin-bottom: 1rem;
}

.zenveex_footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zenveex_footer ul li {
  margin-bottom: 0.5rem;
}

.zenveex_footer a {
  color: #000;
  text-decoration: underline;
}

.zenveex_footer a:hover {
  color: var(--zenveex-acid-pink);
}

.zenveex_footer-notice {
  background: #f4f4f4;
  padding: 1rem;
  border: 2px solid #000;
  font-size: 0.85rem;
}

.zenveex_footer-partners {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #000;
}

.zenveex_partner-chip {
  display: inline-block;
  background: #fff;
  border: 2px solid #000;
  padding: 0.5rem;
  width: 120px;
  height: auto;
}

.zenveex_footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.zenveex_age-gate {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.zenveex_age-gate.zenveex_is-open {
  display: flex;
}

.zenveex_age-gate-content {
  background: var(--zenveex-acid-lime);
  border: 4px solid #000;
  padding: 3rem;
  max-width: 500px;
  text-align: center;
  box-shadow: 12px 12px 0 #000;
  color: #000;
}

.zenveex_age-gate-legal {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Page specific styles */
.zenveex_content-page {
    background: #fff;
    color: #000;
    min-height: 60vh;
}

.zenveex_page-title {
    font-size: 3rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--zenveex-acid-blue);
}

.zenveex_page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.zenveex_editorial-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #000;
}

.zenveex_form-container {
    background: var(--zenveex-acid-lime);
    border: 4px solid #000;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 8px 8px 0 #000;
}

.zenveex_form-group {
    margin-bottom: 1.5rem;
}

.zenveex_form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
    text-transform: uppercase;
}

.zenveex_input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #000;
    font-family: var(--zenveex-font-body);
    font-size: 1rem;
}

.zenveex_faq-item {
    margin-bottom: 1rem;
    border: 2px solid #000;
    background: #fff;
}

.zenveex_faq-item summary {
    padding: 1rem;
    font-weight: 700;
    cursor: pointer;
    background: #f4f4f4;
    text-transform: uppercase;
}

.zenveex_faq-content {
    padding: 1rem;
    border-top: 2px solid #000;
}

.zenveex_lobby-header {
    background: linear-gradient(135deg, var(--zenveex-acid-pink), var(--zenveex-acid-blue));
    color: #fff;
    border-bottom: 2px solid #000;
}

.zenveex_lobby-header .zenveex_page-title {
    color: #fff;
    text-shadow: 4px 4px 0 #000;
}

.zenveex_combo-meter {
    background: #000;
    border: 2px solid #fff;
    padding: 1rem;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.zenveex_combo-label {
    display: block;
    color: var(--zenveex-acid-lime);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.zenveex_combo-bar {
    height: 20px;
    background: #333;
    border: 1px solid #555;
}

.zenveex_combo-fill {
    height: 100%;
    background: var(--zenveex-acid-lime);
}

.zenveex_lobby-layout-highlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.zenveex_highlight-slot .zenveex_game-card {
    max-width: 900px;
    margin: 0 auto;
}

.zenveex_rail-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Animation Classes */
@keyframes slotSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

.is-spinning .zenveex_slot-symbol {
    animation: slotSpin 0.1s infinite alternate;
    filter: blur(2px);
}

@keyframes wheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(1440deg); }
}

.is-spinning .zenveex_wheel-img {
    transition: transform 2.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media (max-width: 768px) {
    .zenveex_burger {
        display: flex;
    }
    
    .zenveex_nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 2px solid #000;
        padding: 1rem;
    }
    
    .zenveex_nav.is-open {
        display: block;
    }
    
    .zenveex_nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .zenveex_hero-inner {
        grid-template-columns: 1fr;
    }

    .zenveex_grid-2 {
        grid-template-columns: 1fr;
    }

    .zenveex_control-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .zenveex_bet-select, .zenveex_btn {
        width: 100%;
    }
}

/* footer-logo-contrast-guard-v3 */
a[href*="gamcare.org"],
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;
  border: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

a[href*="gamcare.org"] img,
a[href*="gamcare.org"] picture,
a[href*="gamcare.org"] .partner-logo,
a[href*="begambleaware.org"] img,
a[href*="begambleaware.org"] picture,
a[href*="begambleaware.org"] .partner-logo,
img[src*="gamcare"],
img[alt*="GamCare" i],
img[src*="gambleaware"],
img[alt*="BeGambleAware" i],
img[alt*="GambleAware" i] {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
  display: block !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  box-shadow: none !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;
}

/* social-game-lobby-centering-guard-v1 */
[data-lobby-layout] {
  justify-content: center !important;
  align-items: start !important;
}

[data-lobby-layout="lobby-three-column-grid"] {
  grid-template-columns: repeat(2, minmax(280px, 420px)) !important;
}

[data-lobby-layout] [data-slot-game] {
  grid-column: 1 / -1 !important;
  width: min(100%, 900px) !important;
  justify-self: center !important;
  margin-inline: auto !important;
}

[data-lobby-layout] [data-wheel-game],
[data-lobby-layout] [data-game-mechanic="roulette"],
[data-lobby-layout] [data-game-mechanic="wheel"] {
  width: min(100%, 420px) !important;
  justify-self: center !important;
}

@media (max-width: 760px) {
  [data-lobby-layout="lobby-three-column-grid"] {
    grid-template-columns: 1fr !important;
  }
  [data-lobby-layout] [data-slot-game],
  [data-lobby-layout] [data-wheel-game],
  [data-lobby-layout] [data-game-mechanic="roulette"],
  [data-lobby-layout] [data-game-mechanic="wheel"] {
    width: 100% !important;
  }
}
