:root {
  --playregent-primary: #4cc9f0;
  --playregent-secondary: #3a86ff;
  --playregent-accent: #80ffdb;
  --playregent-bg: #08101a;
  --playregent-surface: #152231;
  --playregent-text-primary: #edf8ff;
  --playregent-text-secondary: #a9c0d4;
  --playregent-font-heading: "Playfair Display", sans-serif;
  --playregent-font-body: "Lato", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body.playregent_body {
  margin: 0;
  font-family: var(--playregent-font-body);
  background-color: var(--playregent-bg);
  color: var(--playregent-text-primary);
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 60px;
}
h1,
h2,
h3,
h4 {
  font-family: var(--playregent-font-heading);
  font-weight: 700;
  margin-top: 0;
}
a {
  color: var(--playregent-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.playregent_header {
  background-color: var(--playregent-surface);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.playregent_header_container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  flex-wrap: wrap;
}
.playregent_logo {
  font-family: var(--playregent-font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--playregent-primary);
  text-decoration: none;
}
.playregent_nav_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}
.playregent_nav_list a {
  color: var(--playregent-text-primary);
  font-weight: 500;
}
.playregent_header_right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.playregent_btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-family: var(--playregent-font-body);
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}
.playregent_btn_primary {
  background-color: var(--playregent-primary);
  color: var(--playregent-bg);
}
.playregent_btn_secondary {
  background-color: var(--playregent-secondary);
  color: var(--playregent-text-primary);
}
.playregent_btn_sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}
.playregent_burger_menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.playregent_burger_line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--playregent-text-primary);
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .playregent_nav_list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--playregent-surface);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  .playregent_nav_list.is-open {
    display: flex;
  }
  .playregent_burger_menu {
    display: block;
  }
}
.playregent_hero_rail {
  display: flex;
  min-height: 80vh;
  background-color: #0c1824;
}
.playregent_hero_rail_container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  width: 100%;
  padding: 4rem 1rem;
  gap: 2rem;
  align-items: center;
}
.playregent_hero_content {
  flex: 1;
}
.playregent_hero_title {
  font-size: 3rem;
  color: var(--playregent-primary);
  margin-bottom: 1rem;
}
.playregent_hero_subtitle {
  font-size: 1.25rem;
  color: var(--playregent-text-secondary);
  margin-bottom: 2rem;
}
.playregent_hero_rail_panel {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.playregent_floating_card {
  background-color: rgba(21, 34, 49, 0.8);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--playregent-primary);
}
.playregent_hero_ticker {
  width: 100%;
  background-color: var(--playregent-secondary);
  color: var(--playregent-text-primary);
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 768px) {
  .playregent_hero_rail_container, .playregent_hero_rail {
    flex-direction: column;
  }
  .playregent_hero_rail_panel {
    flex: 1;
    width: 100%;
  }
}
.playregent_home_section,
.playregent_content_section,
.playregent_lobby_section,
.container {
  max-width: 1280px;
  margin: 4rem auto;
  padding: 0 1rem;
}
.playregent_page_header {
  max-width: 1280px;
  margin: 4rem auto;
  padding: 0 1rem;
}
.playregent_section_header {
  text-align: center;
  margin-bottom: 3rem;
}
.playregent_section_header h2 {
  color: var(--playregent-primary);
  font-size: 2rem;
}
.playregent_social_games_area {
  width: 100%;
}
.playregent_live_games_grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 960px;
  width: 100%;
  margin-inline: auto;
  gap: 3rem;
}
.playregent_game_card {
  background-color: var(--playregent-surface);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(76, 201, 240, 0.2);
}
.playregent_game_header {
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.playregent_game_header h3 {
  margin: 0;
  color: var(--playregent-accent);
}
.playregent_badge {
  background-color: var(--playregent-primary);
  color: #000;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}
.playregent_game_controls {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(21, 34, 49, 0.9);
  flex-wrap: wrap;
  gap: 10px;
}
.playregent_bet_selector select,
.playregent_bet_chip {
  padding: 0.5rem;
  background-color: var(--playregent-bg);
  color: var(--playregent-text-primary);
  border: 1px solid var(--playregent-primary);
  border-radius: 4px;
}
.playregent_bet_chip.is-active {
  background-color: var(--playregent-primary);
  color: var(--playregent-bg);
}
.playregent_game_status {
  padding: 1rem;
  background-color: #0c1824;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
[data-slot-stage] {
  position: relative;
  width: 100%;
  min-height: clamp(260px, 24vw, 360px);
  background-color: #050a0f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
[data-slot-reel-window] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 600px;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 30;
}
[data-slot-reel] {
  min-width: 0;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(76, 201, 240, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
[data-slot-symbol] {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.1s ease;
}
.playregent_slot_payline {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background-color: rgba(128, 255, 219, 0.5);
  transform: translateY(-50%);
  z-index: 40;
  pointer-events: none;
}
[data-wheel-stage] {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  padding: 2rem;
}
[data-wheel-img] {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transform-origin: center;
  grid-area: 1/1;
}
[data-wheel-pointer] {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid var(--playregent-accent);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
}
.playregent_info_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.playregent_info_media img {
  border-radius: 8px;
}
@media (max-width: 768px) {
  .playregent_info_grid {
    grid-template-columns: 1fr;
  }
}
.playregent_compendium_grid,
.playregent_accordion_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.playregent_compendium_item,
.playregent_fact_card {
  background-color: var(--playregent-surface);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}
.playregent_footer {
  background-color: #050a0f;
  padding: 3rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.playregent_footer_container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.playregent_footer_links ul {
  list-style: none;
  padding: 0;
}
.playregent_footer_links li {
  margin-bottom: 0.5rem;
}
.playregent_footer_partners {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.playregent_partner_logo {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 4px;
}
.playregent_partner_dark {
  background-color: #333;
}
.playregent_partner_light {
  background-color: #fff;
}
.playregent_partner_logo img {
  max-height: 40px;
}
.playregent_footer_bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--playregent-text-secondary);
  font-size: 0.875rem;
}
.playregent_wallet_status_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--playregent-surface);
  border-top: 2px solid var(--playregent-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.75rem 1rem;
  z-index: 90;
}
.playregent_wallet_amount {
  color: var(--playregent-accent);
  font-weight: bold;
  font-size: 1.25rem;
}
.playregent_modal,
.playregent_gate_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1rem;
}
.playregent_modal[aria-hidden="true"],
.playregent_gate_overlay[aria-hidden="true"] {
  display: none;
}
.playregent_modal_content,
.playregent_gate_content {
  background-color: var(--playregent-surface);
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  position: relative;
  text-align: center;
}
.playregent_modal_close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: var(--playregent-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}
.playregent_form_group {
  margin-bottom: 1rem;
  text-align: left;
}
.playregent_form_group label {
  display: block;
  margin-bottom: 0.5rem;
}
.playregent_form_group input,
.playregent_form_group textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--playregent-bg);
  border: 1px solid var(--playregent-text-secondary);
  color: var(--playregent-text-primary);
  border-radius: 4px;
}
.playregent_lobby_featured_split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .playregent_lobby_featured_split {
    grid-template-columns: 1fr;
  }
}
.playregent_lobby_stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.playregent_toast_container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.playregent_toast {
  background-color: var(--playregent-primary);
  color: #000;
  padding: 1rem;
  border-radius: 4px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  animation:
    fadein 0.3s,
    fadeout 0.3s 2.5s forwards;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}
/* 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;
}
