:root {
  --v-primary: #2D6BFF;
  --v-secondary: #1E3A8A;
  --v-accent: #F4B942;
  --v-bg: #0A1022;
  --v-surface: #131F3F;
  --v-text: #EEF4FF;
  --v-text-muted: #B5C2DE;
  --v-error: #EF4444;
  --v-success: #10B981;
  --v-font-heading: 'Playfair Display', serif;
  --v-font-body: 'Inter', sans-serif;
  --v-radius: 8px;
  --v-trans: 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--v-trans);
}

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

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

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

.valtrix_section {
  padding: 4rem 0;
}

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

.valtrix_center {
  text-align: center;
}

.valtrix_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--v-font-body);
  font-weight: 600;
  border-radius: var(--v-radius);
  border: none;
  cursor: pointer;
  transition: var(--v-trans);
  font-size: 1rem;
}

.valtrix_btn_primary {
  background-color: var(--v-accent);
  color: var(--v-bg);
}

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

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

.valtrix_btn_secondary:hover {
  background-color: rgba(244, 185, 66, 0.1);
}

.valtrix_btn_play {
  background-color: var(--v-primary);
  color: #fff;
  width: 100%;
  margin-top: 1rem;
}

.valtrix_btn_play:hover {
  background-color: #4b80ff;
}

.valtrix_btn_play:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.valtrix_btn_text {
  background: none;
  border: none;
  color: var(--v-primary);
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

/* HEADER */
.valtrix_header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(10, 16, 34, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.valtrix_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.valtrix_logo {
  font-family: var(--v-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--v-accent);
}

.valtrix_nav_list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.valtrix_nav_link {
  color: var(--v-text);
  font-weight: 500;
}

.valtrix_nav_link:hover, .valtrix_active {
  color: var(--v-accent);
}

.valtrix_header_actions {
  display: flex;
  gap: 1rem;
}

.valtrix_btn_guest {
  background-color: transparent;
  color: var(--v-text);
  border: 1px solid var(--v-text-muted);
}

.valtrix_btn_upgrade {
  background-color: var(--v-primary);
  color: #fff;
}

.valtrix_burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.valtrix_burger_line {
  width: 25px;
  height: 3px;
  background-color: var(--v-text);
  transition: var(--v-trans);
}

@media (max-width: 768px) {
  .valtrix_nav_list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--v-surface);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .valtrix_nav_list.valtrix_show {
    display: flex;
  }
  .valtrix_burger {
    display: flex;
  }
  .valtrix_header_actions {
    display: none;
  }
}

/* WALLET DOCK */
.valtrix_wallet_dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--v-primary);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: center;
  z-index: 90;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.valtrix_wallet_inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
}

/* DISCLAIMER GATE */
.valtrix_disclaimer_gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 16, 34, 0.98);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.valtrix_gate_content {
  background-color: var(--v-surface);
  padding: 3rem 2rem;
  max-width: 500px;
  text-align: center;
  border-radius: var(--v-radius);
  border: 1px solid var(--v-accent);
  margin: 1rem;
}

.valtrix_gate_title {
  color: var(--v-accent);
  margin-bottom: 1.5rem;
}

.valtrix_gate_text {
  margin-bottom: 2rem;
  color: var(--v-text-muted);
}

.valtrix_hidden_gate {
  display: none !important;
}

/* MAIN */
.valtrix_main {
  flex: 1;
  padding-bottom: 60px; 
}

/* HERO ASYMMETRIC */
.valtrix_hero_split {
  position: relative;
  padding: 4rem 1rem;
  background-color: var(--v-bg);
}

.valtrix_hero_strip_age {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--v-surface);
  color: var(--v-text-muted);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.valtrix_hero_content {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.valtrix_hero_text_col {
  flex: 1;
}

.valtrix_hero_h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--v-accent);
  margin-bottom: 1rem;
}

.valtrix_hero_sub {
  font-size: 1.25rem;
  color: var(--v-text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.valtrix_hero_media_col {
  flex: 1;
  display: flex;
  justify-content: center;
}

.valtrix_hero_framed_media {
  border: 8px solid var(--v-surface);
  border-radius: var(--v-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: rotate(2deg);
}

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

@media (max-width: 900px) {
  .valtrix_hero_content {
    flex-direction: column;
    text-align: center;
  }
  .valtrix_hero_sub {
    margin: 0 auto 2rem;
  }
  .valtrix_hero_framed_media {
    transform: none;
  }
}

/* PAGE HERO COMPACT */
.valtrix_page_hero {
  background-color: var(--v-surface);
  padding: 4rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.valtrix_page_title {
  font-size: 2.5rem;
  color: var(--v-accent);
}

.valtrix_page_subtitle {
  color: var(--v-text-muted);
}

/* GAMES ZONE (HOMEPAGE & LOBBY) */
.valtrix_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);
}

.valtrix_game_card {
  background-color: var(--v-surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--v-radius);
  padding: 1.5rem;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.valtrix_game_header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.5rem;
}

.valtrix_game_title {
  font-size: 1.25rem;
  color: #fff;
  margin: 0;
}

.valtrix_game_badge {
  background-color: var(--v-primary);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.valtrix_game_stage_wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.valtrix_game_controls {
  width: 100%;
  max-width: 400px;
  background-color: rgba(0,0,0,0.2);
  padding: 1rem;
  border-radius: var(--v-radius);
}

.valtrix_game_controls_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.valtrix_game_label {
  font-size: 0.9rem;
  color: var(--v-text-muted);
}

.valtrix_game_select {
  background-color: var(--v-bg);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.valtrix_game_result_panel {
  text-align: center;
  margin-top: 1rem;
  font-weight: bold;
  color: var(--v-accent);
  min-height: 24px;
}

.valtrix_game_history {
  text-align: center;
  font-size: 0.8rem;
  color: var(--v-text-muted);
  margin-top: 0.5rem;
}

/* SLOT STAGE SPECIFICS */
.valtrix_slot_stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 8;
  min-height: clamp(240px, 18vw, 320px);
  background-color: #050810;
  border: 4px solid #223055;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.valtrix_slot_payline {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(244, 185, 66, 0.5);
  transform: translateY(-50%);
  z-index: 50;
  box-shadow: 0 0 8px var(--v-accent);
}

.valtrix_slot_reel_window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  height: 80%;
  gap: 10px;
  overflow: hidden;
  z-index: 30;
}

.valtrix_slot_reel {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  position: relative;
}

.valtrix_slot_reel img {
  display: block;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.1s;
}

.valtrix_spin_anim img {
  animation: slotBlur 0.2s infinite linear alternate;
}

@keyframes slotBlur {
  0% { transform: translateY(-10px); filter: blur(2px); }
  100% { transform: translateY(10px); filter: blur(2px); }
}

/* WHEEL STAGE SPECIFICS */
.valtrix_wheel_stage {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
}

.valtrix_wheel_img {
  grid-area: 1 / 1;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transform-origin: center;
  transition: transform 2.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.valtrix_wheel_pointer {
  grid-area: 1 / 1;
  place-self: start center;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid var(--v-error);
  z-index: 80;
  transform: translateY(-5px);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.valtrix_games_cta_wrap {
  text-align: center;
  margin-top: 2rem;
}

/* LOBBY SPLIT LAYOUT */
.valtrix_lobby_layout_split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .valtrix_lobby_layout_split {
    grid-template-columns: 1fr;
  }
}

.valtrix_card_large {
  padding: 2rem;
}

.valtrix_game_lore {
  color: var(--v-text-muted);
  margin-bottom: 1.5rem;
  text-align: center;
  font-style: italic;
}

/* FEATURE BLOCKS */
.valtrix_grid_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .valtrix_grid_2 {
    grid-template-columns: 1fr;
  }
}

.valtrix_text_block h2 {
  color: var(--v-accent);
}

.valtrix_list {
  list-style: none;
  margin-top: 1rem;
}

.valtrix_list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--v-text-muted);
}

.valtrix_list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--v-accent);
  font-size: 1.2rem;
}

.valtrix_info_panel {
  background-color: var(--v-bg);
  padding: 2rem;
  border-radius: var(--v-radius);
  border-left: 4px solid var(--v-primary);
}

.valtrix_panel_title {
  color: var(--v-text);
}

/* EVENTS GRID */
.valtrix_events_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.valtrix_event_card {
  background-color: var(--v-surface);
  padding: 1.5rem;
  border-radius: var(--v-radius);
  border-top: 3px solid var(--v-accent);
}

.valtrix_event_time {
  color: var(--v-primary);
  margin-bottom: 0.5rem;
}

/* LOCATIONS */
.valtrix_locations_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.valtrix_location_card {
  background-color: var(--v-bg);
  border-radius: var(--v-radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.valtrix_location_img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.valtrix_location_img_placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #1a233a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.valtrix_placeholder_text {
  color: var(--v-text-muted);
  font-style: italic;
}

.valtrix_location_content {
  padding: 1.5rem;
}

.valtrix_location_desc {
  color: var(--v-text-muted);
  margin-bottom: 1rem;
}

.valtrix_lore_feedback {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--v-success);
}

/* RANKS */
.valtrix_ranks_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.valtrix_rank_card {
  background-color: var(--v-bg);
  padding: 1.5rem;
  border-radius: var(--v-radius);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.valtrix_rank_name {
  color: var(--v-accent);
}

.valtrix_rank_req {
  color: var(--v-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.valtrix_rank_bonus {
  font-weight: 600;
}

/* FAQ */
.valtrix_faq_accordion {
  max-width: 800px;
  margin: 2rem auto 0;
}

.valtrix_faq_item {
  background-color: var(--v-surface);
  margin-bottom: 1rem;
  border-radius: var(--v-radius);
  overflow: hidden;
}

.valtrix_faq_trigger {
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  color: var(--v-text);
  font-family: var(--v-font-body);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.valtrix_faq_trigger::after {
  content: "+";
  color: var(--v-accent);
  font-size: 1.5rem;
}

.valtrix_faq_trigger[aria-expanded="true"]::after {
  content: "-";
}

.valtrix_faq_content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--v-text-muted);
}

.valtrix_faq_trigger[aria-expanded="true"] + .valtrix_faq_content {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

/* EDITORIAL & CONTACT */
.valtrix_editorial_block {
  max-width: 800px;
  margin: 0 auto;
}

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

.valtrix_editorial_text {
  margin-bottom: 1.5rem;
}

.valtrix_check_list {
  list-style: none;
  margin-bottom: 2rem;
}

.valtrix_check_list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.valtrix_check_list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--v-success);
}

.valtrix_contact_info h2, .valtrix_contact_info h3 {
  color: var(--v-accent);
}

.valtrix_address_card {
  background-color: var(--v-surface);
  padding: 1.5rem;
  border-radius: var(--v-radius);
  margin-bottom: 1.5rem;
  color: var(--v-text-muted);
}

.valtrix_text_link {
  color: var(--v-primary);
  text-decoration: underline;
}

.valtrix_form_group {
  margin-bottom: 1.5rem;
}

.valtrix_label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--v-text-muted);
}

.valtrix_input, .valtrix_select, .valtrix_textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--v-surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--v-text);
  font-family: var(--v-font-body);
}

.valtrix_input:focus, .valtrix_select:focus, .valtrix_textarea:focus {
  outline: none;
  border-color: var(--v-primary);
}

.valtrix_success_msg {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--v-success);
  padding: 1rem;
  border-radius: var(--v-radius);
  margin-top: 1rem;
  border: 1px solid var(--v-success);
}

.valtrix_hidden {
  display: none;
}

/* FEATURE CARD (LOBBY SIDEBAR) */
.valtrix_feature_card {
  background-color: var(--v-surface);
  padding: 1.5rem;
  border-radius: var(--v-radius);
  margin-top: 2rem;
}

.valtrix_feature_title {
  font-size: 1.1rem;
  color: var(--v-accent);
  margin-bottom: 0.5rem;
}

.valtrix_feature_desc {
  font-size: 0.9rem;
  color: var(--v-text-muted);
  margin-bottom: 1rem;
}

.valtrix_progress_bar {
  width: 100%;
  height: 8px;
  background-color: var(--v-bg);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.valtrix_progress_fill {
  height: 100%;
  background-color: var(--v-primary);
  transition: width 0.5s ease;
}

.valtrix_feature_hint {
  font-size: 0.8rem;
  color: var(--v-text-muted);
  text-align: right;
}

/* POLICY SHELL */
.valtrix_policy_shell {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--v-surface);
  padding: 2rem;
  border-radius: var(--v-radius);
  color: var(--v-text-muted);
}

.valtrix_hidden_egg {
  background: none;
  border: none;
  color: rgba(255,255,255,0.1);
  cursor: pointer;
  font-size: 1.5rem;
  float: right;
}

.valtrix_hidden_egg:hover {
  color: var(--v-accent);
}

.valtrix_egg_hidden_result {
  display: none;
  clear: both;
  padding-top: 1rem;
}

/* FOOTER */
.valtrix_footer {
  background-color: var(--v-surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 1rem 1rem;
  margin-top: auto;
}

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

.valtrix_footer_company {
  font-weight: 700;
  color: var(--v-text);
  margin-bottom: 0.5rem;
}

.valtrix_footer_reg, .valtrix_footer_address, .valtrix_footer_email {
  color: var(--v-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.valtrix_footer_heading {
  font-size: 1.1rem;
  color: var(--v-accent);
  margin-bottom: 1rem;
}

.valtrix_footer_list {
  list-style: none;
}

.valtrix_footer_list li {
  margin-bottom: 0.5rem;
}

.valtrix_footer_list a {
  color: var(--v-text-muted);
  font-size: 0.9rem;
}

.valtrix_footer_list a:hover {
  color: var(--v-text);
  text-decoration: underline;
}

.valtrix_footer_text {
  color: var(--v-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.valtrix_footer_partners {
  display: flex;
  gap: 1rem;
}

.valtrix_partner_link {
  display: inline-block;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 4px;
}

.valtrix_partner_gamcare {
  background-color: #222;
}

.valtrix_partner_logo {
  height: 30px;
  width: auto;
}

.valtrix_footer_bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  text-align: center;
}

.valtrix_footer_disclaimer {
  font-size: 0.8rem;
  color: var(--v-text-muted);
  margin-bottom: 0.5rem;
}

.valtrix_footer_copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* TOAST */
.valtrix_toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--v-surface);
  color: var(--v-text);
  padding: 1rem 2rem;
  border-radius: var(--v-radius);
  border: 1px solid var(--v-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  z-index: 300;
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
  pointer-events: none;
}

.valtrix_toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* 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-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;
  aspect-ratio: 16 / 7 !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;
}
