@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@700&family=Inter:wght@400;600&display=swap');

:root {
  --starvexx-bg: #FFFFFF;
  --starvexx-text: #000000;
  --starvexx-lime: #CCFF00;
  --starvexx-pink: #FF007F;
  --starvexx-blue: #4169E1;
  --starvexx-border: 3px solid #000000;
  --starvexx-shadow: 6px 6px 0px #000000;
  --starvexx-font-head: 'Rajdhani', sans-serif;
  --starvexx-font-body: 'Inter', sans-serif;
}

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

body.starvexx_body {
  margin: 0;
  padding: 0;
  background-color: var(--starvexx-bg);
  color: var(--starvexx-text);
  font-family: var(--starvexx-font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.starvexx_title_massive {
  font-family: var(--starvexx-font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 0 var(--starvexx-pink);
}

h2, h3, h4 {
  font-family: var(--starvexx-font-head);
  text-transform: uppercase;
  margin-top: 0;
}

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

.starvexx_section {
  padding: 4rem 0;
  border-bottom: var(--starvexx-border);
}

.starvexx_bg_acid {
  background-color: var(--starvexx-lime);
}

.starvexx_bg_pink {
  background-color: var(--starvexx-pink);
  color: #fff;
}

.starvexx_bg_blue {
  background-color: var(--starvexx-blue);
  color: #fff;
}

.starvexx_header {
  border-bottom: var(--starvexx-border);
  background-color: var(--starvexx-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.starvexx_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.starvexx_logo a {
  font-family: var(--starvexx-font-head);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.starvexx_nav {
  display: flex;
  gap: 20px;
}

.starvexx_nav_link {
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.starvexx_nav_link:hover, .starvexx_nav_link.starvexx_active {
  border-color: #000;
  background: var(--starvexx-lime);
  color: #000;
}

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

.starvexx_burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.starvexx_burger span {
  display: block;
  height: 3px;
  background-color: #000;
  width: 100%;
}

.starvexx_btn {
  font-family: var(--starvexx-font-head);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px 20px;
  border: var(--starvexx-border);
  box-shadow: 4px 4px 0 #000;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.1s;
  background: #fff;
  color: #000;
}

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

.starvexx_btn_primary {
  background: var(--starvexx-lime);
}

.starvexx_btn_accent {
  background: var(--starvexx-pink);
  color: #fff;
}

.starvexx_btn_large {
  padding: 15px 30px;
  font-size: 1.5rem;
}

.starvexx_ticker_bar {
  background: #000;
  color: var(--starvexx-lime);
  font-family: var(--starvexx-font-head);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: var(--starvexx-border);
}

.starvexx_ticker_track {
  display: inline-block;
  animation: starvexx_marquee 20s linear infinite;
}

.starvexx_ticker_track span {
  margin-right: 50px;
}

@keyframes starvexx_marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.starvexx_wallet_widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--starvexx-blue);
  color: #fff;
  border: var(--starvexx-border);
  box-shadow: var(--starvexx-shadow);
  padding: 10px 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.starvexx_wallet_label {
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.starvexx_wallet_val {
  font-family: var(--starvexx-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--starvexx-lime);
}

.starvexx_hero_split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--starvexx-border);
  min-height: 60vh;
}

.starvexx_hero_content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: var(--starvexx-border);
}

.starvexx_hero_sub {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.starvexx_hero_visual {
  background: var(--starvexx-lime);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.starvexx_framed_panel {
  position: relative;
  border: var(--starvexx-border);
  box-shadow: var(--starvexx-shadow);
  background: #fff;
}

.starvexx_hero_img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.starvexx_sticker {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--starvexx-pink);
  color: #fff;
  font-family: var(--starvexx-font-head);
  font-size: 2rem;
  font-weight: 700;
  padding: 10px 20px;
  transform: rotate(-10deg);
  border: var(--starvexx-border);
}

.starvexx_social_games_zone {
  display: grid;
  grid-template-columns: 1fr;
  max-width: clamp(820px, 72vw, 900px);
  width: 100%;
  margin: 0 auto;
  gap: 28px;
  padding: 0 10px;
}

.starvexx_game_card {
  background: #fff;
  border: var(--starvexx-border);
  box-shadow: var(--starvexx-shadow);
  display: flex;
  flex-direction: column;
  color: #000;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.starvexx_game_header {
  border-bottom: 2px solid #000;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--starvexx-blue);
  color: #fff;
}

.starvexx_game_header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.starvexx_badge {
  background: var(--starvexx-lime);
  color: #000;
  padding: 5px 10px;
  font-family: var(--starvexx-font-head);
  font-weight: 700;
  border: 2px solid #000;
}

.starvexx_game_board {
  background: #111;
  position: relative;
  border-bottom: 2px solid #000;
}

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

.starvexx_reel_window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
  overflow: hidden;
  gap: 10px;
}

.starvexx_reel {
  background: #222;
  border: 2px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 0;
}

.starvexx_reel img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.starvexx_payline {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(204, 255, 0, 0.6);
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

[data-wheel-stage="true"] {
  aspect-ratio: 1/1;
  max-width: 360px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center;
}

.starvexx_wheel_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  grid-area: 1/1;
  transform-origin: center;
}

.starvexx_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: 30px solid var(--starvexx-lime);
  transform: translateY(-10px);
  z-index: 10;
  filter: drop-shadow(0 2px 0 #000);
}

.starvexx_game_controls {
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #f4f4f4;
}

.starvexx_bet_selector {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.starvexx_bet_selector label {
  font-family: var(--starvexx-font-head);
  font-weight: 700;
  font-size: 0.9rem;
}

.starvexx_select {
  padding: 10px;
  border: 2px solid #000;
  font-family: var(--starvexx-font-body);
  font-weight: 600;
  font-size: 1rem;
}

.starvexx_game_result {
  padding: 15px;
  text-align: center;
  font-family: var(--starvexx-font-head);
  font-weight: 700;
  font-size: 1.2rem;
  border-top: 2px solid #000;
  background: #fff;
}

.starvexx_center_act {
  text-align: center;
  margin-top: 40px;
}

.starvexx_grid_2, .starvexx_grid_3 {
  display: grid;
  gap: 30px;
}

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

.starvexx_grid_3 {
  grid-template-columns: repeat(3, 1fr);
}

.starvexx_poster_card {
  background: var(--starvexx-lime);
  border: var(--starvexx-border);
  box-shadow: var(--starvexx-shadow);
  padding: 30px;
  color: #000;
}

.starvexx_card_white {
  background: #fff;
}

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

.starvexx_list_hard li {
  border-bottom: 2px solid #000;
  padding: 10px 0;
}

.starvexx_ledger_row {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #000;
  padding: 10px 0;
  font-family: var(--starvexx-font-head);
  font-weight: 700;
  font-size: 1.2rem;
}

.starvexx_masonry_lobby {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.starvexx_masonry_lobby .starvexx_game_card:nth-child(even) {
  transform: translateY(40px);
}

.starvexx_footer {
  background: #000;
  color: #fff;
  border-top: var(--starvexx-border);
  padding: 40px 20px 20px;
}

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

.starvexx_footer h4 {
  color: var(--starvexx-lime);
  margin-bottom: 15px;
}

.starvexx_footer_links a {
  display: block;
  margin-bottom: 10px;
  text-decoration: underline;
}

.starvexx_sim_notice {
  font-weight: 600;
  color: var(--starvexx-pink);
  margin-bottom: 15px;
}

.starvexx_partner_logos {
  display: flex;
  gap: 15px;
}

.starvexx_partner_logo {
  display: inline-block;
  padding: 10px;
  border-radius: 4px;
}

.starvexx_gamcare {
  background: #222;
}

.starvexx_gambleaware {
  background: #fff;
}

.starvexx_footer_bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 2px solid #333;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #aaa;
}

.starvexx_form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.starvexx_input {
  padding: 12px;
  border: 2px solid #000;
  font-family: var(--starvexx-font-body);
  font-size: 1rem;
}

.starvexx_accordion {
  margin-bottom: 10px;
}

.starvexx_acc_trigger {
  width: 100%;
  text-align: left;
  padding: 15px;
  background: #f4f4f4;
  border: 2px solid #000;
  font-family: var(--starvexx-font-head);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
}

.starvexx_acc_content {
  display: none;
  padding: 15px;
  border: 2px solid #000;
  border-top: none;
  background: #fff;
}

.starvexx_acc_trigger[aria-expanded="true"] + .starvexx_acc_content {
  display: block;
}

.starvexx_modal, .starvexx_age_gate {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.starvexx_modal.is-active, .starvexx_age_gate.is-active {
  display: flex;
}

.starvexx_modal_content, .starvexx_age_gate_content {
  max-width: 500px;
  width: 100%;
  position: relative;
  background: var(--starvexx-lime);
  border: var(--starvexx-border);
  box-shadow: var(--starvexx-shadow);
  padding: 40px;
}

.starvexx_modal_close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #000;
  color: #fff;
  border: none;
  width: 30px;
  height: 30px;
  font-weight: bold;
  cursor: pointer;
}

.starvexx_page_header {
  padding: 4rem 20px;
  border-bottom: var(--starvexx-border);
}

.starvexx_policy_main {
  padding: 4rem 0;
}

@media (max-width: 1024px) {
  .starvexx_hero_split {
    grid-template-columns: 1fr;
  }
  .starvexx_hero_content {
    border-right: none;
    border-bottom: var(--starvexx-border);
  }
}

@media (max-width: 768px) {
  .starvexx_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--starvexx-bg);
    flex-direction: column;
    border-bottom: var(--starvexx-border);
    padding: 20px;
  }
  .starvexx_nav.is-open {
    display: flex;
  }
  .starvexx_burger {
    display: flex;
  }
  .starvexx_grid_2, .starvexx_grid_3, .starvexx_masonry_lobby {
    grid-template-columns: 1fr;
  }
  .starvexx_masonry_lobby .starvexx_game_card:nth-child(even) {
    transform: none;
  }
  .starvexx_social_games_zone {
    gap: 20px;
  }
  .starvexx_wallet_widget {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    border: none;
    border-top: var(--starvexx-border);
  }
}

/* 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: #fff !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: #fff !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;
}
