:root {
  --primary: #D96E34;
  --secondary: #C69C6D;
  --accent: #F2B807;
  --bg: #2A1B14;
  --surface: #3F281E;
  --text-p: #FDF2E9;
  --text-s: #D4A98C;
  --hf: 'Playfair Display', sans-serif;
  --bf: 'Inter', sans-serif;
  --hw: 800;
  --bw: 500;
}

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

body.ozlottooz_body {
  font-family: var(--bf);
  font-weight: var(--bw);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--bg);
  color: var(--text-p);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--hf);
  font-weight: var(--hw);
  color: var(--text-p);
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

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

.ozlottooz_container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.ozlottooz_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--bf);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.3s;
  min-height: 44px;
}
.ozlottooz_btn:active {
  transform: translateY(2px);
}
.ozlottooz_btn_primary {
  background-color: var(--primary);
  color: #fff;
}
.ozlottooz_btn_primary:hover {
  background-color: #b55827;
}
.ozlottooz_btn_secondary {
  background-color: var(--surface);
  color: var(--text-p);
  border: 1px solid var(--secondary);
}
.ozlottooz_btn_secondary:hover {
  background-color: var(--secondary);
  color: var(--bg);
}
.ozlottooz_btn_guest {
  background-color: var(--accent);
  color: var(--bg);
}
.ozlottooz_btn_guest:hover {
  background-color: #d19f05;
}
.ozlottooz_btn_spin {
  background-color: var(--primary);
  color: #fff;
  width: 100%;
  font-size: 1.1rem;
}
.ozlottooz_btn_spin:hover {
  background-color: #b55827;
}
.ozlottooz_btn_spin:disabled {
  background-color: #555;
  cursor: not-allowed;
}
.ozlottooz_btn_small {
  padding: 8px 16px;
  font-size: 0.9rem;
  background-color: var(--secondary);
  color: var(--bg);
}
.ozlottooz_btn_small:hover {
  background-color: #a88157;
}
.ozlottooz_btn_text {
  background: none;
  border: none;
  color: var(--text-s);
  text-decoration: underline;
  cursor: pointer;
  padding: 5px;
}

.ozlottooz_bg_surface {
  background-color: var(--surface);
}
.ozlottooz_text_center {
  text-align: center;
}

.ozlottooz_header {
  background-color: #1a100c;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--surface);
}
.ozlottooz_header_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}
.ozlottooz_logo a {
  font-family: var(--hf);
  font-size: 1.5rem;
  font-weight: var(--hw);
  color: var(--accent);
}
.ozlottooz_nav_list {
  list-style: none;
  display: flex;
  gap: 20px;
}
.ozlottooz_nav_list a {
  color: var(--text-p);
  font-weight: 600;
  padding: 10px;
}
.ozlottooz_nav_list a.ozlottooz_active, .ozlottooz_nav_list a:hover {
  color: var(--accent);
}
.ozlottooz_header_actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ozlottooz_age_badge {
  background-color: var(--surface);
  border: 1px solid var(--text-s);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.8rem;
  color: var(--text-p);
}
.ozlottooz_nav_toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.ozlottooz_burger_line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-p);
  margin: 4px 0;
  transition: 0.3s;
}

.ozlottooz_main {
  min-height: calc(100vh - 70px - 200px);
}

.ozlottooz_hero_command {
  background: linear-gradient(135deg, #1f120e 0%, #2A1B14 100%);
  padding: 60px 0 0;
  border-bottom: 1px solid var(--surface);
}
.ozlottooz_hero_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.ozlottooz_hero_content {
  flex: 1;
}
.ozlottooz_trust_signal {
  display: inline-block;
  background: rgba(217, 110, 52, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.ozlottooz_hero_title {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: var(--text-p);
}
.ozlottooz_hero_subtitle {
  font-size: 1.2rem;
  color: var(--text-s);
  margin-bottom: 30px;
}
.ozlottooz_hero_visual {
  flex: 1;
  max-width: 50%;
}
.ozlottooz_media_panel {
  position: relative;
  border: 4px solid var(--surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.ozlottooz_hero_img {
  width: 100%;
  display: block;
  opacity: 0.8;
}
.ozlottooz_dashboard_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(42, 27, 20, 0.9);
  padding: 15px;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--primary);
}
.ozlottooz_dash_stat {
  text-align: center;
}
.ozlottooz_dash_label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-s);
  text-transform: uppercase;
}
.ozlottooz_dash_value {
  display: block;
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: bold;
}
.ozlottooz_hero_ticker {
  background-color: var(--primary);
  padding: 10px 0;
  margin-top: 40px;
  overflow: hidden;
  white-space: nowrap;
}
.ozlottooz_ticker_track {
  display: inline-block;
  animation: ozlottooz_ticker 20s linear infinite;
  color: #fff;
  font-weight: 600;
}
.ozlottooz_ticker_dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 20px;
  vertical-align: middle;
}
@keyframes ozlottooz_ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ozlottooz_home_game_highlight {
  padding: 60px 0;
}
.ozlottooz_section_header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.ozlottooz_live_game_wrapper {
  max-width: 800px;
  margin: 0 auto 30px;
  background-color: #1a100c;
  border: 2px solid var(--surface);
  border-radius: 8px;
  padding: 20px;
}
.ozlottooz_game_panel {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.ozlottooz_game_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--surface);
  padding-bottom: 10px;
}
.ozlottooz_game_header h3, .ozlottooz_game_header h2 {
  margin: 0;
  font-size: 1.5rem;
}
.ozlottooz_game_balance {
  font-weight: bold;
  color: var(--accent);
}
.ozlottooz_slot_board_container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #000;
  border-radius: 4px;
  overflow: hidden;
}
.ozlottooz_slot_frame_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.ozlottooz_slot_reels {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 80%;
  height: 70%;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
.ozlottooz_reel {
  width: 30%;
  height: 100%;
  background-color: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ozlottooz_reel img {
  width: 80%;
  height: auto;
  object-fit: contain;
  transition: transform 0.1s;
}
.ozlottooz_game_controls {
  display: flex;
  gap: 15px;
  background-color: var(--surface);
  padding: 15px;
  border-radius: 4px;
}
.ozlottooz_bet_selector {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.ozlottooz_bet_selector label {
  font-size: 0.8rem;
  color: var(--text-s);
}
.ozlottooz_bet_selector select {
  padding: 8px;
  background-color: var(--bg);
  color: var(--text-p);
  border: 1px solid var(--secondary);
  border-radius: 4px;
}
.ozlottooz_game_controls button {
  flex: 2;
}
.ozlottooz_game_status {
  text-align: center;
  padding: 10px;
  background-color: rgba(0,0,0,0.3);
  border-radius: 4px;
  min-height: 44px;
  color: var(--text-p);
}
.ozlottooz_game_history {
  font-size: 0.85rem;
  color: var(--text-s);
  text-align: center;
}
.ozlottooz_lobby_link_wrapper {
  text-align: center;
}

.ozlottooz_editorial_block {
  padding: 60px 0;
}
.ozlottooz_editorial_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.ozlottooz_grid_reverse {
  direction: rtl;
}
.ozlottooz_grid_reverse > * {
  direction: ltr;
}
.ozlottooz_winner_list {
  list-style: none;
  margin-top: 20px;
}
.ozlottooz_winner_list li {
  background: rgba(0,0,0,0.2);
  padding: 10px;
  margin-bottom: 10px;
  border-left: 3px solid var(--primary);
}
.ozlottooz_poster_callout, .ozlottooz_proof_card {
  background: var(--bg);
  padding: 30px;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  text-align: center;
}
.ozlottooz_stats_row {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.ozlottooz_stat_item {
  background: var(--bg);
  padding: 15px;
  flex: 1;
  text-align: center;
  border-radius: 4px;
  border-bottom: 2px solid var(--primary);
}
.ozlottooz_stat_num {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
}
.ozlottooz_stat_label {
  font-size: 0.8rem;
  color: var(--text-s);
}

.ozlottooz_features_block {
  padding: 60px 0;
  background: url('assets/images/location-opal-refinery.webp') center/cover;
  position: relative;
}
.ozlottooz_features_block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42, 27, 20, 0.85);
}
.ozlottooz_features_block .ozlottooz_container {
  position: relative;
  z-index: 1;
}
.ozlottooz_feature_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ozlottooz_feature_card {
  background: var(--surface);
  padding: 20px;
  border: 1px solid var(--secondary);
  border-radius: 4px;
}
.ozlottooz_feature_card h3 {
  color: var(--accent);
}
.ozlottooz_feature_card p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.ozlottooz_faq_block {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}
.ozlottooz_accordion_item {
  margin-bottom: 10px;
  border: 1px solid var(--surface);
}
.ozlottooz_accordion_trigger {
  width: 100%;
  text-align: left;
  background: var(--surface);
  color: var(--text-p);
  border: none;
  padding: 15px;
  font-family: var(--bf);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ozlottooz_accordion_trigger::after {
  content: '+';
  color: var(--accent);
  font-size: 1.5rem;
}
.ozlottooz_accordion_trigger[aria-expanded="true"]::after {
  content: '-';
}
.ozlottooz_accordion_content {
  display: none;
  padding: 15px;
  background: var(--bg);
  border-top: 1px solid var(--surface);
}
.ozlottooz_accordion_trigger[aria-expanded="true"] + .ozlottooz_accordion_content {
  display: block;
}

.ozlottooz_footer {
  background-color: #150d0a;
  padding: 40px 0 20px;
  border-top: 2px solid var(--surface);
  font-size: 0.9rem;
}
.ozlottooz_footer_top {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 30px;
  margin-bottom: 30px;
}
.ozlottooz_footer_company {
  color: var(--text-p);
  margin-bottom: 10px;
}
.ozlottooz_footer_identity p {
  color: var(--text-s);
  margin-bottom: 5px;
}
.ozlottooz_footer_links ul {
  list-style: none;
}
.ozlottooz_footer_links li {
  margin-bottom: 8px;
}
.ozlottooz_footer_commitment p {
  color: var(--text-s);
}
.ozlottooz_footer_partners {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid var(--surface);
  border-bottom: 1px solid var(--surface);
}
.ozlottooz_partner_link {
  display: inline-block;
  padding: 10px;
  border-radius: 4px;
}
.ozlottooz_partner_begambleaware {
  background-color: #000;
}
.ozlottooz_partner_gamcare {
  background-color: #fff;
}
.ozlottooz_partner_link img {
  height: 40px;
  width: auto;
}
.ozlottooz_footer_bottom {
  text-align: center;
  color: var(--text-s);
  position: relative;
}
.ozlottooz_footer_nrm {
  margin-bottom: 15px;
  font-size: 0.8rem;
}
.ozlottooz_copyright {
  margin-bottom: 10px;
}
.ozlottooz_easter_egg_trigger {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.3s;
}
.ozlottooz_easter_egg_trigger:hover {
  opacity: 1;
}

.ozlottooz_disclaimer_drawer {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--surface);
  border-top: 3px solid var(--primary);
  padding: 20px;
  z-index: 1000;
  transition: bottom 0.3s ease;
}
.ozlottooz_disclaimer_drawer.is-open {
  bottom: 0;
}
.ozlottooz_drawer_content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.ozlottooz_drawer_close {
  position: absolute;
  top: -10px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-p);
  font-size: 2rem;
  cursor: pointer;
}

.ozlottooz_modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.ozlottooz_modal.is-open {
  display: flex;
}
.ozlottooz_modal_content {
  background: var(--surface);
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
  border: 1px solid var(--primary);
}
.ozlottooz_modal_close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-p);
  font-size: 1.5rem;
  cursor: pointer;
}
.ozlottooz_form_group {
  margin-bottom: 15px;
}
.ozlottooz_form_group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}
.ozlottooz_form_group input, .ozlottooz_form_group select, .ozlottooz_form_group textarea {
  width: 100%;
  padding: 10px;
  background: var(--bg);
  border: 1px solid var(--secondary);
  color: var(--text-p);
  border-radius: 4px;
  font-family: var(--bf);
}

.ozlottooz_toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  z-index: 3000;
  transition: transform 0.3s ease;
}
.ozlottooz_toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

.ozlottooz_page_header {
  padding: 40px 20px;
  text-align: center;
  border-bottom: 1px solid var(--surface);
  margin-bottom: 40px;
}
.ozlottooz_content_section {
  padding: 0 0 60px;
}
.ozlottooz_editorial_split {
  display: flex;
  gap: 40px;
  align-items: center;
}
.ozlottooz_editorial_split > div {
  flex: 1;
}
.ozlottooz_content_img {
  border: 2px solid var(--secondary);
  border-radius: 4px;
}
.ozlottooz_mission_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.ozlottooz_card {
  background: var(--bg);
  padding: 20px;
  border-left: 4px solid var(--primary);
}
.ozlottooz_guarantee_block {
  background: rgba(217, 110, 52, 0.1);
  padding: 40px 20px;
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary);
}
.ozlottooz_guarantee_badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.ozlottooz_contact_grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.ozlottooz_contact_form_wrapper {
  padding: 30px;
  border-radius: 8px;
}
.ozlottooz_info_card {
  background: var(--surface);
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent);
}

.ozlottooz_legal_content h2 {
  margin-top: 30px;
  color: var(--secondary);
  border-bottom: 1px solid var(--surface);
  padding-bottom: 5px;
}
.ozlottooz_legal_content p, .ozlottooz_legal_content ul {
  margin-bottom: 15px;
}
.ozlottooz_legal_content ul {
  padding-left: 20px;
}

.ozlottooz_lobby_layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 0;
}
.ozlottooz_wallet_panel {
  background: var(--surface);
  padding: 15px 20px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.ozlottooz_wallet_label {
  color: var(--text-s);
}
.ozlottooz_wallet_value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
}
.ozlottooz_lobby_rail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ozlottooz_rail_game_card {
  background: var(--surface);
  border: 1px solid var(--secondary);
  padding: 15px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ozlottooz_wheel_board_container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--bg);
}
.ozlottooz_wheel_img {
  width: 100%;
  height: 100%;
  transition: transform linear;
}
.ozlottooz_wheel_pointer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  font-size: 24px;
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.ozlottooz_rail_controls {
  display: flex;
  gap: 10px;
}
.ozlottooz_rail_controls select {
  flex: 1;
  background: var(--bg);
  color: var(--text-p);
  border: 1px solid var(--secondary);
}
.ozlottooz_rail_controls button {
  flex: 1;
}
.ozlottooz_game_status_small {
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-s);
  background: var(--bg);
  padding: 5px;
}
.ozlottooz_rail_slot_preview {
  height: 100px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ozlottooz_rail_preview_img {
  height: 80%;
  width: auto;
}

.ozlottooz_nrm_banner {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  position: sticky;
  bottom: 0;
  z-index: 90;
}

@media (min-width: 768px) {
  .ozlottooz_lobby_layout {
    flex-direction: row;
  }
  .ozlottooz_lobby_highlight {
    flex: 2;
  }
  .ozlottooz_lobby_rail {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .ozlottooz_nav_toggle {
    display: block;
  }
  .ozlottooz_nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--surface);
    border-bottom: 2px solid var(--primary);
  }
  .ozlottooz_nav.is-open {
    display: block;
  }
  .ozlottooz_nav_list {
    flex-direction: column;
    gap: 0;
  }
  .ozlottooz_nav_list li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .ozlottooz_nav_list a {
    display: block;
    padding: 15px 20px;
  }
  .ozlottooz_hero_container, .ozlottooz_editorial_split, .ozlottooz_contact_grid, .ozlottooz_editorial_grid {
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .ozlottooz_hero_visual {
    max-width: 100%;
  }
  .ozlottooz_hero_title {
    font-size: 2.5rem;
  }
  .ozlottooz_feature_cards, .ozlottooz_mission_cards {
    grid-template-columns: 1fr;
  }
  .ozlottooz_footer_top {
    grid-template-columns: 1fr;
  }
  .ozlottooz_game_controls {
    flex-direction: column;
  }
}

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