:root {
  --lagoldhotsauce-primary: #E63956;
  --lagoldhotsauce-secondary: #8C1D3A;
  --lagoldhotsauce-accent: #FFB86B;
  --lagoldhotsauce-background: #0D0D12;
  --lagoldhotsauce-surface: #1A1A24;
  --lagoldhotsauce-text-primary: #FAF1F3;
  --lagoldhotsauce-text-secondary: #C6B4BA;
  --lagoldhotsauce-font-heading: 'Playfair Display', sans-serif;
  --lagoldhotsauce-font-body: 'Inter', sans-serif;
  --lagoldhotsauce-radius: 8px;
  --lagoldhotsauce-transition: all 0.3s ease;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body.lagoldhotsauce_body {
  font-family: var(--lagoldhotsauce-font-body);
  background-color: var(--lagoldhotsauce-background);
  color: var(--lagoldhotsauce-text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--lagoldhotsauce-font-heading);
  font-weight: 700;
  color: var(--lagoldhotsauce-text-primary);
}
a {
  color: var(--lagoldhotsauce-accent);
  text-decoration: none;
  transition: var(--lagoldhotsauce-transition);
}
a:hover {
  color: var(--lagoldhotsauce-primary);
}
.lagoldhotsauce_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.lagoldhotsauce_header {
  background-color: var(--lagoldhotsauce-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.lagoldhotsauce_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.lagoldhotsauce_logo {
  font-family: var(--lagoldhotsauce-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lagoldhotsauce-text-primary);
}
.lagoldhotsauce_nav_list {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.lagoldhotsauce_nav_link {
  color: var(--lagoldhotsauce-text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}
.lagoldhotsauce_nav_link:hover, .lagoldhotsauce_nav_active {
  color: var(--lagoldhotsauce-accent);
}
.lagoldhotsauce_burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 101;
}
.lagoldhotsauce_burger_line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--lagoldhotsauce-text-primary);
  position: absolute;
  transition: var(--lagoldhotsauce-transition);
}
.lagoldhotsauce_burger_line:nth-child(1) { top: 0; }
.lagoldhotsauce_burger_line:nth-child(2) { top: 11px; }
.lagoldhotsauce_burger_line:nth-child(3) { top: 22px; }
.lagoldhotsauce_burger[aria-expanded="true"] .lagoldhotsauce_burger_line:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.lagoldhotsauce_burger[aria-expanded="true"] .lagoldhotsauce_burger_line:nth-child(2) {
  opacity: 0;
}
.lagoldhotsauce_burger[aria-expanded="true"] .lagoldhotsauce_burger_line:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}
.lagoldhotsauce_btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: var(--lagoldhotsauce-radius);
  font-family: var(--lagoldhotsauce-font-body);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--lagoldhotsauce-transition);
}
.lagoldhotsauce_btn_primary {
  background-color: var(--lagoldhotsauce-primary);
  color: #fff;
}
.lagoldhotsauce_btn_primary:hover {
  background-color: #ff4d6d;
  transform: translateY(-2px);
}
.lagoldhotsauce_btn_secondary {
  background-color: transparent;
  color: var(--lagoldhotsauce-text-primary);
  border: 1px solid var(--lagoldhotsauce-accent);
}
.lagoldhotsauce_btn_secondary:hover {
  background-color: rgba(255, 184, 107, 0.1);
}
.lagoldhotsauce_btn_sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.lagoldhotsauce_section {
  padding: 5rem 0;
}
.lagoldhotsauce_bg_surface {
  background-color: var(--lagoldhotsauce-surface);
}
.lagoldhotsauce_text_center {
  text-align: center;
}
.lagoldhotsauce_h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.lagoldhotsauce_h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.lagoldhotsauce_h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.lagoldhotsauce_grid {
  display: grid;
  gap: 2rem;
}
.lagoldhotsauce_grid_2 { grid-template-columns: repeat(2, 1fr); }
.lagoldhotsauce_grid_3 { grid-template-columns: repeat(3, 1fr); }
.lagoldhotsauce_grid_4 { grid-template-columns: repeat(4, 1fr); }
.lagoldhotsauce_card {
  background-color: var(--lagoldhotsauce-surface);
  padding: 2rem;
  border-radius: var(--lagoldhotsauce-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.lagoldhotsauce_img_responsive {
  max-width: 100%;
  height: auto;
  border-radius: var(--lagoldhotsauce-radius);
}
.lagoldhotsauce_hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lagoldhotsauce_hero_solid_floating {
  background: linear-gradient(135deg, var(--lagoldhotsauce-background) 0%, var(--lagoldhotsauce-secondary) 100%);
}
.lagoldhotsauce_hero_inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.lagoldhotsauce_hero_content {
  flex: 1;
  z-index: 2;
}
.lagoldhotsauce_hero_visual {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.lagoldhotsauce_trust_badge {
  display: inline-block;
  background-color: rgba(255, 184, 107, 0.1);
  color: var(--lagoldhotsauce-accent);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 184, 107, 0.3);
}
.lagoldhotsauce_hero_subtitle {
  font-size: 1.2rem;
  color: var(--lagoldhotsauce-text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
}
.lagoldhotsauce_floating_cards {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.lagoldhotsauce_hero_img {
  width: 100%;
  border-radius: var(--lagoldhotsauce-radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transform: perspective(1000px) rotateY(-10deg);
}
.lagoldhotsauce_proof_cards {
  position: absolute;
  bottom: -20px;
  left: -40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lagoldhotsauce_proof_card {
  background-color: var(--lagoldhotsauce-surface);
  padding: 0.8rem 1.2rem;
  border-radius: var(--lagoldhotsauce-radius);
  border-left: 4px solid var(--lagoldhotsauce-accent);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.lagoldhotsauce_ticker {
  background-color: var(--lagoldhotsauce-primary);
  color: #fff;
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.lagoldhotsauce_ticker_inner {
  display: inline-block;
  animation: lagoldhotsauce_ticker_anim 30s linear infinite;
  font-weight: 700;
  letter-spacing: 1px;
}
.lagoldhotsauce_ticker_inner span {
  margin: 0 2rem;
}
@keyframes lagoldhotsauce_ticker_anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.lagoldhotsauce_split_feature {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.lagoldhotsauce_split_content, .lagoldhotsauce_split_visual { flex: 1; }
.lagoldhotsauce_testimonial_card {
  background-color: var(--lagoldhotsauce-background);
  padding: 2rem;
  border-radius: var(--lagoldhotsauce-radius);
  border-top: 2px solid var(--lagoldhotsauce-primary);
}
.lagoldhotsauce_testimonial_card p {
  font-style: italic;
  margin-bottom: 1rem;
}
.lagoldhotsauce_testimonial_card span {
  color: var(--lagoldhotsauce-accent);
  font-weight: 700;
}
.lagoldhotsauce_faq_accordion details {
  background-color: var(--lagoldhotsauce-surface);
  margin-bottom: 1rem;
  border-radius: var(--lagoldhotsauce-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.lagoldhotsauce_faq_accordion summary {
  padding: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  outline: none;
}
.lagoldhotsauce_faq_accordion summary::-webkit-details-marker { display: none; }
.lagoldhotsauce_faq_accordion details[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.lagoldhotsauce_faq_accordion p {
  padding: 1.5rem;
  color: var(--lagoldhotsauce-text-secondary);
}
.lagoldhotsauce_wallet_widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--lagoldhotsauce-surface);
  border: 2px solid var(--lagoldhotsauce-accent);
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  z-index: 90;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}
.lagoldhotsauce_wallet_label {
  font-size: 0.8rem;
  color: var(--lagoldhotsauce-accent);
  font-weight: 700;
}
.lagoldhotsauce_wallet_balance {
  font-family: var(--lagoldhotsauce-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
.lagoldhotsauce_footer {
  background-color: #000;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.lagoldhotsauce_footer_top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.lagoldhotsauce_footer_col h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.lagoldhotsauce_footer_col p, .lagoldhotsauce_footer_link {
  color: var(--lagoldhotsauce-text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}
.lagoldhotsauce_footer_nav { list-style: none; }
.lagoldhotsauce_footer_nav li { margin-bottom: 0.8rem; }
.lagoldhotsauce_partner_logos {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.lagoldhotsauce_partner_logo_link {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 4px;
}
.lagoldhotsauce_partner_logo_link img {
  height: 30px;
  width: auto;
  display: block;
}
.gamcare_bg { background-color: #fff; }
.gambleaware_bg { background-color: #222; }
.lagoldhotsauce_footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}
.lagoldhotsauce_footer_bottom p {
  color: var(--lagoldhotsauce-text-secondary);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.lagoldhotsauce_age_gate {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(13, 13, 18, 0.95);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.lagoldhotsauce_age_gate.lagoldhotsauce_active { display: flex; }
.lagoldhotsauce_age_gate_content {
  background-color: var(--lagoldhotsauce-surface);
  padding: 3rem;
  border-radius: var(--lagoldhotsauce-radius);
  max-width: 500px;
  text-align: center;
  border: 1px solid var(--lagoldhotsauce-accent);
}
.lagoldhotsauce_age_gate_content h2 { margin-bottom: 1rem; }
.lagoldhotsauce_age_gate_content p { margin-bottom: 1.5rem; color: var(--lagoldhotsauce-text-secondary); }
.lagoldhotsauce_page_header {
  padding: 4rem 0 2rem;
  background-color: var(--lagoldhotsauce-surface);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lagoldhotsauce_longform_content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--lagoldhotsauce-accent);
}
.lagoldhotsauce_longform_content p {
  margin-bottom: 1.5rem;
  color: var(--lagoldhotsauce-text-secondary);
}
.lagoldhotsauce_form_group { margin-bottom: 1.5rem; }
.lagoldhotsauce_form_group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.lagoldhotsauce_input {
  width: 100%;
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  background-color: rgba(0,0,0,0.2);
  color: #fff;
  font-family: var(--lagoldhotsauce-font-body);
}
.lagoldhotsauce_lobby_main {
  padding: 3rem 0;
}
.lagoldhotsauce_lobby_layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.lagoldhotsauce_lobby_featured {
  flex: 0 0 60%;
}
.lagoldhotsauce_lobby_rail {
  flex: 0 0 calc(40% - 3rem);
}
.lagoldhotsauce_game_module {
  background-color: var(--lagoldhotsauce-surface);
  border-radius: var(--lagoldhotsauce-radius);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lagoldhotsauce_wheel_container {
  position: relative;
  width: 300px;
  height: 300px;
  margin-bottom: 2rem;
}
.lagoldhotsauce_wheel_pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--lagoldhotsauce-accent);
  font-size: 2rem;
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.lagoldhotsauce_wheel_board {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: transform cubic-bezier(0.25, 0.1, 0.25, 1) 2.5s;
}
.lagoldhotsauce_game_controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  width: 100%;
  justify-content: center;
}
.lagoldhotsauce_bet_selector select, .lagoldhotsauce_bet_select_small {
  background-color: rgba(0,0,0,0.3);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem;
  border-radius: 4px;
}
.lagoldhotsauce_result_panel, .lagoldhotsauce_result_panel_small {
  background-color: rgba(0,0,0,0.4);
  padding: 0.8rem;
  border-radius: 4px;
  text-align: center;
  min-height: 48px;
  width: 100%;
  font-weight: 700;
  color: var(--lagoldhotsauce-accent);
}
.lagoldhotsauce_game_status {
  width: 100%;
  max-width: 400px;
}
.lagoldhotsauce_wallet_mirror {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--lagoldhotsauce-text-secondary);
}
.lagoldhotsauce_game_history {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--lagoldhotsauce-text-secondary);
}
.lagoldhotsauce_game_card_small {
  background-color: var(--lagoldhotsauce-surface);
  border-radius: var(--lagoldhotsauce-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}
.lagoldhotsauce_slot_board_small {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 1rem 0;
  background-color: #000;
  padding: 1rem;
  border-radius: 4px;
}
.lagoldhotsauce_slot_symbol_img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  display: block;
}
.lagoldhotsauce_roulette_img_small {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
}
.lagoldhotsauce_game_controls_small {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.lagoldhotsauce_meter_track {
  height: 20px;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  margin: 0.5rem 0;
}
.lagoldhotsauce_meter_fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lagoldhotsauce-accent), var(--lagoldhotsauce-primary));
  transition: width 0.3s ease;
}
.lagoldhotsauce_toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--lagoldhotsauce-primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lagoldhotsauce_toast.lagoldhotsauce_show {
  opacity: 1;
}
.lagoldhotsauce_hidden_egg {
  width: 30px;
  height: 30px;
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.3s;
}
.lagoldhotsauce_hidden_egg:hover { opacity: 1; }
.lagoldhotsauce_legal_strip {
  background-color: #000;
  color: var(--lagoldhotsauce-text-secondary);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.8rem;
}
@media (max-width: 1024px) {
  .lagoldhotsauce_lobby_layout {
      flex-direction: column;
  }
  .lagoldhotsauce_lobby_featured, .lagoldhotsauce_lobby_rail {
      flex: 1 1 100%;
      width: 100%;
  }
}
@media (max-width: 768px) {
  .lagoldhotsauce_header_inner { flex-wrap: wrap; }
  .lagoldhotsauce_burger { display: block; }
  .lagoldhotsauce_nav {
      display: none;
      width: 100%;
      padding: 1rem 0;
  }
  .lagoldhotsauce_nav.lagoldhotsauce_open { display: block; }
  .lagoldhotsauce_nav_list {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
  }
  .lagoldhotsauce_hero_inner { flex-direction: column; text-align: center; }
  .lagoldhotsauce_proof_cards { left: 0; bottom: -30px; }
  .lagoldhotsauce_h1 { font-size: 2.5rem; }
  .lagoldhotsauce_grid_2, .lagoldhotsauce_grid_3, .lagoldhotsauce_grid_4, .lagoldhotsauce_footer_top {
      grid-template-columns: 1fr;
  }
  .lagoldhotsauce_split_feature { flex-direction: column; }
  .lagoldhotsauce_game_controls { flex-direction: column; }
}
@media (max-width: 360px) {
  .lagoldhotsauce_wheel_container { width: 220px; height: 220px; }
  .lagoldhotsauce_slot_symbol_img { width: 45px; height: 45px; }
}
/* footer-logo-contrast-guard */
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: #111111 !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: #ffffff !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="begambleaware.org"],
a[href*="gamcare.org"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
