:root {
  --ozzlotto-primary: #0EA5A8;
  --ozzlotto-secondary: #1F6F78;
  --ozzlotto-accent: #D88C4A;
  --ozzlotto-bg: #08161A;
  --ozzlotto-surface: #13272C;
  --ozzlotto-text: #E9F5F5;
  --ozzlotto-text-muted: #A6BDBE;
  --ozzlotto-font-heading: 'Playfair Display', serif;
  --ozzlotto-font-body: 'Lato', sans-serif;
}

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

body.ozzlotto_body {
  font-family: var(--ozzlotto-font-body);
  background-color: var(--ozzlotto-bg);
  color: var(--ozzlotto-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--ozzlotto-font-heading);
  font-weight: 700;
  color: var(--ozzlotto-text);
  margin-bottom: 1rem;
}

a {
  color: var(--ozzlotto-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--ozzlotto-primary);
}

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

.ozzlotto_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ozzlotto_btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--ozzlotto-font-body);
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  min-height: 44px;
}

.ozzlotto_btn_primary {
  background-color: var(--ozzlotto-accent);
  color: var(--ozzlotto-bg);
}

.ozzlotto_btn_primary:hover {
  background-color: #e59d5c;
  box-shadow: 0 0 10px rgba(216, 140, 74, 0.5);
}

.ozzlotto_btn_secondary {
  background-color: transparent;
  color: var(--ozzlotto-accent);
  border: 1px solid var(--ozzlotto-accent);
}

.ozzlotto_btn_secondary:hover {
  background-color: rgba(216, 140, 74, 0.1);
}

.ozzlotto_btn_upgrade {
  background-color: var(--ozzlotto-surface);
  color: var(--ozzlotto-primary);
  border: 1px solid var(--ozzlotto-primary);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.ozzlotto_header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #051013;
  border-bottom: 2px solid var(--ozzlotto-surface);
}

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

.ozzlotto_logo a {
  font-family: var(--ozzlotto-font-heading);
  font-size: 1.5rem;
  color: var(--ozzlotto-accent);
}

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

.ozzlotto_nav_link {
  color: var(--ozzlotto-text);
  position: relative;
}

.ozzlotto_nav_link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--ozzlotto-accent);
  transition: width 0.3s ease;
}

.ozzlotto_nav_link:hover::after {
  width: 100%;
}

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

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

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

.ozzlotto_age_badge {
  background-color: var(--ozzlotto-surface);
  border: 1px solid var(--ozzlotto-accent);
  color: var(--ozzlotto-accent);
  padding: 0.2rem 0.5rem;
  font-weight: 700;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.ozzlotto_burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.ozzlotto_burger_line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--ozzlotto-accent);
  position: absolute;
  transition: all 0.3s ease;
}

.ozzlotto_burger_line:nth-child(1) { top: 0; }
.ozzlotto_burger_line:nth-child(2) { top: 11px; }
.ozzlotto_burger_line:nth-child(3) { top: 22px; }

.ozzlotto_no_real_money_banner {
  background-color: #111;
  color: var(--ozzlotto-text-muted);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.8rem;
  border-top: 1px solid var(--ozzlotto-accent);
}

.ozzlotto_section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--ozzlotto-surface);
}

.ozzlotto_section_title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.ozzlotto_section_title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--ozzlotto-accent);
  margin: 1rem auto 0;
}

.ozzlotto_hero {
  padding: 6rem 0;
  background-color: var(--ozzlotto-bg);
  position: relative;
  overflow: hidden;
}

.ozzlotto_hero_solid_cards .ozzlotto_hero_content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.ozzlotto_hero_title {
  font-size: 3.5rem;
  color: var(--ozzlotto-primary);
  margin-bottom: 1rem;
}

.ozzlotto_hero_subtitle {
  font-size: 1.2rem;
  color: var(--ozzlotto-text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ozzlotto_hero_cards_container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  perspective: 1000px;
}

.ozzlotto_floating_card {
  background-color: var(--ozzlotto-surface);
  border: 1px solid var(--ozzlotto-secondary);
  padding: 1rem;
  border-radius: 8px;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

.ozzlotto_floating_card:nth-child(2) {
  animation-delay: -3s;
}

.ozzlotto_floating_card img {
  max-width: 200px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-5deg); }
  50% { transform: translateY(-15px) rotateX(-5deg) rotateY(5deg); }
}

.ozzlotto_foyer_intro p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

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

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

.ozzlotto_card {
  background-color: var(--ozzlotto-surface);
  padding: 2rem;
  border-radius: 8px;
  border-top: 3px solid var(--ozzlotto-accent);
}

.ozzlotto_myth {
  border-top-color: #888;
}

.ozzlotto_fact {
  border-top-color: var(--ozzlotto-primary);
}

.ozzlotto_table_wrapper {
  overflow-x: auto;
}

.ozzlotto_table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--ozzlotto-surface);
}

.ozzlotto_table th, .ozzlotto_table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--ozzlotto-bg);
}

.ozzlotto_table th {
  color: var(--ozzlotto-accent);
  font-family: var(--ozzlotto-font-heading);
}

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

.ozzlotto_split_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ozzlotto_split_media img {
  border-radius: 8px;
  border: 1px solid var(--ozzlotto-secondary);
}

.ozzlotto_easter_egg_section {
  text-align: center;
}

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

.ozzlotto_clickable_egg {
  max-width: 150px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.ozzlotto_clickable_egg:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px var(--ozzlotto-primary));
}

.ozzlotto_egg_hint {
  font-size: 0.8rem;
  color: var(--ozzlotto-text-muted);
  margin-top: 0.5rem;
}

.ozzlotto_form_group {
  margin-bottom: 1.5rem;
}

.ozzlotto_form_group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ozzlotto-text-muted);
}

.ozzlotto_form_group input, .ozzlotto_form_group textarea {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--ozzlotto-bg);
  border: 1px solid var(--ozzlotto-secondary);
  color: var(--ozzlotto-text);
  border-radius: 4px;
}

.ozzlotto_accordion_item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--ozzlotto-surface);
}

.ozzlotto_accordion_trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--ozzlotto-primary);
  font-family: var(--ozzlotto-font-heading);
  font-size: 1.2rem;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.ozzlotto_accordion_trigger::after {
  content: '+';
}

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

.ozzlotto_accordion_content {
  display: none;
  padding-bottom: 1rem;
  color: var(--ozzlotto-text-muted);
}

.ozzlotto_page_header {
  padding: 3rem 0;
  background-color: var(--ozzlotto-surface);
  text-align: center;
  border-bottom: 1px solid var(--ozzlotto-secondary);
}

.ozzlotto_longform h2 {
  margin-top: 2.5rem;
  color: var(--ozzlotto-primary);
}

.ozzlotto_longform p, .ozzlotto_longform ul {
  margin-bottom: 1rem;
  color: var(--ozzlotto-text-muted);
}

.ozzlotto_list {
  list-style: disc;
  margin-left: 2rem;
}

.ozzlotto_footer {
  background-color: #030a0d;
  padding: 4rem 0 1rem;
  border-top: 2px solid var(--ozzlotto-surface);
}

.ozzlotto_footer_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.ozzlotto_footer_heading {
  color: var(--ozzlotto-primary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.ozzlotto_footer_identity p, .ozzlotto_footer_links ul li, .ozzlotto_footer_responsible p {
  color: var(--ozzlotto-text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.ozzlotto_footer_links ul {
  list-style: none;
}

.ozzlotto_partner_logos {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.ozzlotto_partner_logos a {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 4px;
}

.ozzlotto_partner_dark {
  background-color: #111;
}

.ozzlotto_partner_light {
  background-color: #fff;
}

.ozzlotto_partner_logos img {
  height: 30px;
  width: auto;
}

.ozzlotto_footer_bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid var(--ozzlotto-surface);
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

.ozzlotto_wallet_widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--ozzlotto-surface);
  border: 1px solid var(--ozzlotto-primary);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  z-index: 90;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.ozzlotto_wallet_amount {
  color: var(--ozzlotto-accent);
  font-family: var(--ozzlotto-font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

.ozzlotto_modal_overlay, .ozzlotto_age_gate_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ozzlotto_modal_overlay[aria-hidden="true"], .ozzlotto_age_gate_overlay[aria-hidden="true"] {
  display: none;
}

.ozzlotto_modal_content, .ozzlotto_age_gate_content {
  background-color: var(--ozzlotto-surface);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--ozzlotto-primary);
  max-width: 500px;
  width: 90%;
  position: relative;
}

.ozzlotto_age_gate_content {
  text-align: center;
}

.ozzlotto_age_gate_content h2 {
  color: var(--ozzlotto-accent);
}

.ozzlotto_age_gate_content p {
  margin-bottom: 1.5rem;
  color: var(--ozzlotto-text-muted);
}

.ozzlotto_modal_close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--ozzlotto-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.ozzlotto_live_game_section {
  background-color: #061114;
}

.ozzlotto_game_module {
  background-color: var(--ozzlotto-surface);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--ozzlotto-secondary);
}

.ozzlotto_game_large {
  margin-bottom: 4rem;
}

.ozzlotto_game_large h2 {
  color: var(--ozzlotto-primary);
  text-align: center;
  margin-bottom: 2rem;
}

.ozzlotto_game_layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
}

.ozzlotto_game_slot_board {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.ozzlotto_board_frame {
  width: 100%;
  z-index: 2;
  position: relative;
}

.ozzlotto_reels_container {
  position: absolute;
  top: 25%;
  left: 15%;
  width: 70%;
  height: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 3;
  /* background-color: #000; */
  overflow: hidden;
}

.ozzlotto_reel {
  width: 30%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ozzlotto_symbol {
  width: 80%;
  height: auto;
}

.ozzlotto_spinning .ozzlotto_symbol {
  filter: blur(2px);
}

.ozzlotto_game_wheel_board {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.ozzlotto_wheel_pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid var(--ozzlotto-accent);
  z-index: 10;
}

.ozzlotto_wheel_disk {
  width: 100%;
  border-radius: 50%;
  transition: transform 3.5s cubic-bezier(0.25, 0.1, 0.15, 1);
}

.ozzlotto_game_controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  background-color: #08161A;
  padding: 1.5rem;
  border-radius: 8px;
}

.ozzlotto_bet_selector label {
  display: block;
  color: var(--ozzlotto-text-muted);
  margin-bottom: 0.5rem;
}

.ozzlotto_select {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--ozzlotto-surface);
  color: var(--ozzlotto-text);
  border: 1px solid var(--ozzlotto-secondary);
  border-radius: 4px;
}

.ozzlotto_game_status {
  margin-top: 1rem;
  text-align: center;
  padding: 1rem;
  background-color: rgba(14, 165, 168, 0.1);
  color: var(--ozzlotto-primary);
  border-radius: 4px;
  font-weight: 700;
}

.ozzlotto_wallet_mirror {
  text-align: center;
  margin-top: 1rem;
  color: var(--ozzlotto-text-muted);
}

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

.ozzlotto_badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
  background-color: #333;
  border-radius: 4px;
  margin-top: 1rem;
}

.ozzlotto_badge.completed {
  background-color: var(--ozzlotto-primary);
  color: #fff;
}

.ozzlotto_curtain_call_banner {
  background-color: var(--ozzlotto-accent);
  color: #000;
  text-align: center;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 150;
}

.ozzlotto_curtain_call_banner[aria-hidden="true"] {
  display: none;
}

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

@media (max-width: 768px) {
  .ozzlotto_nav_list, .ozzlotto_auth_guest {
    display: none;
  }
  
  .ozzlotto_burger {
    display: block;
  }

  .ozzlotto_nav_list.is-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--ozzlotto-surface);
    padding: 1rem;
    z-index: 99;
  }

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

  .ozzlotto_hero_cards_container {
    flex-direction: column;
    align-items: center;
  }

  .ozzlotto_floating_card {
    transform: none !important;
    animation: none !important;
  }

  .ozzlotto_wallet_widget {
    bottom: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    justify-content: center;
  }
}
/* 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;
}
