:root {
  --primary: #E63956;
  --secondary: #8C1D3A;
  --accent: #FFB86B;
  --background: #0D0D12;
  --surface: #1A1A24;
  --text: #FAF1F3;
  --text-muted: #C6B4BA;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Lora', serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  margin-top: 0;
}

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

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

.proswisslos_header {
  background: var(--surface);
  border-bottom: 2px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.proswisslos_header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.proswisslos_logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.proswisslos_nav {
  display: flex;
  gap: 1.5rem;
}

.proswisslos_nav a {
  color: var(--text);
  font-weight: 600;
}

.proswisslos_auth-age {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.proswisslos_age-badge {
  background: var(--primary);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}

.proswisslos_wallet-header {
  font-weight: bold;
  color: var(--accent);
}

.proswisslos_burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.proswisslos_hero {
  padding: 4rem 0;
}

.proswisslos_hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.proswisslos_hero-text h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.proswisslos_hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.proswisslos_hero-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.proswisslos_btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.proswisslos_btn:hover {
  opacity: 0.8;
}

.proswisslos_btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.proswisslos_section {
  padding: 4rem 0;
}

.proswisslos_section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.proswisslos_bg-alt {
  background: var(--surface);
}

.proswisslos_games-zone {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
  gap: 28px;
  padding: 24px;
}

.proswisslos_lobby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.proswisslos_game-card {
  background: var(--surface);
  border: 2px solid var(--secondary);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  max-width: 100%;
  min-width: 0;
}

.proswisslos_game-card h3 {
  color: var(--accent);
}

.proswisslos_slot-stage {
  width: 100%;
  max-width: 760px;
  min-height: clamp(240px, 18vw, 320px);
  position: relative;
  background: #000;
  border: 4px solid var(--secondary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

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

.proswisslos_reel {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.proswisslos_reel img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.proswisslos_payline {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  z-index: 50;
  box-shadow: 0 0 10px var(--accent);
}

.proswisslos_wheel-stage {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
  position: relative;
  display: grid;
  place-items: center;
  margin: 1rem 0;
}

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

.proswisslos_pointer {
  grid-area: 1/1;
  place-self: start center;
  z-index: 80;
  color: var(--accent);
  font-size: 2rem;
  text-shadow: 0 0 4px #000;
  transform: translateY(-15px);
}

.proswisslos_controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.proswisslos_bet-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.proswisslos_chip {
  background: var(--background);
  border: 1px solid var(--secondary);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
}

.proswisslos_chip.active {
  background: var(--primary);
  border-color: var(--accent);
}

.proswisslos_select {
  padding: 0.5rem;
  background: var(--background);
  color: var(--text);
  border: 1px solid var(--secondary);
  border-radius: 4px;
}

.proswisslos_result {
  font-weight: bold;
  color: var(--accent);
  min-height: 1.5rem;
}

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

.proswisslos_card {
  background: var(--background);
  border: 1px solid var(--secondary);
  padding: 1.5rem;
  border-radius: 8px;
}

.proswisslos_faq-header {
  width: 100%;
  text-align: left;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--secondary);
  padding: 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.proswisslos_faq-body {
  display: none;
  padding: 1rem;
  background: var(--background);
  border: 1px solid var(--secondary);
  border-top: none;
  margin-bottom: 1rem;
}

.proswisslos_form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.proswisslos_input {
  padding: 0.75rem;
  background: var(--background);
  border: 1px solid var(--secondary);
  color: var(--text);
  font-family: inherit;
}

.proswisslos_footer {
  background: var(--surface);
  border-top: 2px solid var(--secondary);
  padding: 3rem 0;
}

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

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

.proswisslos_footer-links li {
  margin-bottom: 0.5rem;
}

.proswisslos_partner-logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.proswisslos_partner-logos a {
  background: #fff;
  padding: 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proswisslos_partner-logos img {
  max-width: 150px;
  height: auto;
}

.proswisslos_text-center {
  text-align: center;
}

.proswisslos_disc-drawer {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--background);
  border-top: 4px solid var(--primary);
  padding: 2rem;
  z-index: 1000;
  transition: bottom 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.8);
}

.proswisslos_disc-drawer.is-open {
  bottom: 0;
}

.proswisslos_disc-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.proswisslos_wallet-panel {
  background: var(--surface);
  border: 1px solid var(--secondary);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  border-radius: 8px;
}

.proswisslos_easter-egg {
  display: inline-block;
  margin-top: 2rem;
  cursor: pointer;
}

.proswisslos_egg-trigger {
  width: 60px;
  height: 60px;
  transition: transform 0.3s;
}

.proswisslos_egg-trigger:hover {
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
  .proswisslos_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 2px solid var(--secondary);
  }
  .proswisslos_nav.is-open {
    display: flex;
  }
  .proswisslos_burger {
    display: block;
  }
  .proswisslos_lobby-grid {
    grid-template-columns: 1fr;
  }
}

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