:root {
  --primary: #2D6BFF;
  --secondary: #1E3A8A;
  --accent: #F4B942;
  --bg: #0A1022;
  --surface: #131F3F;
  --text-main: #EEF4FF;
  --text-sub: #B5C2DE;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body.onemoreturntonight_body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a:hover {
  color: #fff;
}

ul, ol { list-style: none; }

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

button, select, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

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

.onemoreturntonight_btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
}

.onemoreturntonight_btn_primary {
  background-color: var(--accent);
  color: #000;
}

.onemoreturntonight_btn_primary:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 185, 66, 0.3);
}

.onemoreturntonight_btn_secondary {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.onemoreturntonight_btn_secondary:hover {
  background-color: rgba(244, 185, 66, 0.1);
}

.onemoreturntonight_btn_text {
  background: none;
  color: var(--text-sub);
  text-decoration: underline;
  cursor: pointer;
}

.onemoreturntonight_visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.onemoreturntonight_header {
  background-color: var(--primary);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

.onemoreturntonight_header_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.onemoreturntonight_logo a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
}

.onemoreturntonight_nav_list {
  display: flex;
  gap: 30px;
}

.onemoreturntonight_nav_list a {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 5px 0;
  position: relative;
}

.onemoreturntonight_nav_list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.onemoreturntonight_nav_list a:hover::after, .onemoreturntonight_nav_list a[aria-current="page"]::after {
  width: 100%;
}

.onemoreturntonight_header_actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.onemoreturntonight_wallet {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--accent);
  padding: 5px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  color: var(--accent);
}

.onemoreturntonight_wallet_label {
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.onemoreturntonight_wallet_balance {
  font-weight: 700;
  font-size: 1.1rem;
}

.onemoreturntonight_age_badge {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.onemoreturntonight_burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 101;
}

.onemoreturntonight_burger_line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 0;
  transition: var(--transition);
}

.onemoreturntonight_burger_line:nth-child(1) { top: 0; }

.onemoreturntonight_burger_line:nth-child(2) { top: 11px; }

.onemoreturntonight_burger_line:nth-child(3) { bottom: 0; }

.onemoreturntonight_burger[aria-expanded="true"] .onemoreturntonight_burger_line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.onemoreturntonight_burger[aria-expanded="true"] .onemoreturntonight_burger_line:nth-child(2) {
  opacity: 0;
}

.onemoreturntonight_burger[aria-expanded="true"] .onemoreturntonight_burger_line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.onemoreturntonight_hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.onemoreturntonight_hero_bg_image {
  background: var(--bg);
}

.onemoreturntonight_hero_content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.onemoreturntonight_hero_text {
  max-width: 500px;
}

.onemoreturntonight_hero .onemoreturntonight_h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--accent);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.onemoreturntonight_hero_sub {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.onemoreturntonight_hero_legal_strip {
  margin-top: 30px;
  padding: 15px;
  background: rgba(0,0,0,0.6);
  border-left: 4px solid var(--accent);
  font-size: 0.85rem;
  color: #ccc;
}

.onemoreturntonight_hero_visual {
  border: 4px solid var(--accent);
  padding: 10px;
  background: var(--surface);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
}

.onemoreturntonight_hero_image {
  width: 100%;
  border-radius: 4px;
  filter: contrast(1.1);
}

.onemoreturntonight_block {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.onemoreturntonight_block:nth-child(even) {
  background-color: var(--surface);
}

.onemoreturntonight_h2 {
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 10px;
}

.onemoreturntonight_section_desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-sub);
  font-size: 1.1rem;
}

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

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

.onemoreturntonight_card {
  background: var(--bg);
  border: 1px solid rgba(244, 185, 66, 0.2);
  padding: 30px;
  border-radius: 8px;
  transition: var(--transition);
}

.onemoreturntonight_card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.onemoreturntonight_card h3 {
  color: #fff;
  font-size: 1.3rem;
}

.onemoreturntonight_event_list li {
  background: rgba(255,255,255,0.02);
  padding: 20px;
  margin-bottom: 15px;
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
}

.onemoreturntonight_event_list strong {
  color: var(--accent);
  display: block;
  margin-bottom: 5px;
}

.onemoreturntonight_impact_stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.onemoreturntonight_stat {
  text-align: center;
}

.onemoreturntonight_stat_val {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(45, 107, 255, 0.3);
  line-height: 1;
}

.onemoreturntonight_stat_label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--text-sub);
}

.onemoreturntonight_guide_list {
  max-width: 600px;
  margin: 0 auto;
  counter-reset: guide-counter;
}

.onemoreturntonight_guide_list li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.onemoreturntonight_guide_list li::before {
  counter-increment: guide-counter;
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: -5px;
  width: 35px;
  height: 35px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
}

.onemoreturntonight_location_card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.onemoreturntonight_location_img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 2px solid var(--primary);
}

.onemoreturntonight_location_info {
  padding: 25px;
}

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

.onemoreturntonight_faq_accordion {
  max-width: 800px;
  margin: 0 auto;
}

.onemoreturntonight_faq_item {
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
}

.onemoreturntonight_faq_trigger {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.onemoreturntonight_faq_trigger::after {
  content: '+';
  color: var(--accent);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.onemoreturntonight_faq_trigger[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.onemoreturntonight_faq_content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--bg);
}

.onemoreturntonight_faq_trigger[aria-expanded="true"] + .onemoreturntonight_faq_content {
  padding: 20px;
  max-height: 500px;
}

.onemoreturntonight_hidden_cogs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.onemoreturntonight_cog {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: auto;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s;
  filter: drop-shadow(0 0 5px rgba(244,185,66,0.5));
}

.onemoreturntonight_cog:hover {
  opacity: 1;
}

.onemoreturntonight_cog.is-found {
  opacity: 0;
  pointer-events: none;
  transform: scale(2);
}

.onemoreturntonight_live_game_section {
  padding: 60px 0;
  background: linear-gradient(to bottom, var(--bg), var(--surface));
  border-top: 1px solid rgba(244,185,66,0.2);
  border-bottom: 1px solid rgba(244,185,66,0.2);
}

.onemoreturntonight_game_module {
  background: var(--bg);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(45,107,255,0.1);
}

.onemoreturntonight_game_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.onemoreturntonight_game_header h3 {
  color: var(--accent);
  margin: 0;
}

.onemoreturntonight_game_wallet {
  font-family: var(--font-heading);
  color: #fff;
  background: rgba(255,255,255,0.05);
  padding: 5px 15px;
  border-radius: 4px;
}

.onemoreturntonight_game_visual {
  background: #050811;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.onemoreturntonight_wheel_container {
  position: relative;
  width: 300px;
  height: 300px;
}

.onemoreturntonight_wheel_pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid var(--accent);
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.onemoreturntonight_wheel_board {
  width: 100%;
  height: 100%;
  transform-origin: center center;
  will-change: transform;
}

.onemoreturntonight_game_controls {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.02);
  padding: 15px;
  border-radius: 8px;
}

.onemoreturntonight_bet_selector, .onemoreturntonight_bet_target {
  display: flex;
  flex-direction: column;
}

.onemoreturntonight_bet_selector label, .onemoreturntonight_bet_target label {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-bottom: 5px;
}

.onemoreturntonight_bet_selector select, .onemoreturntonight_bet_target select {
  background: var(--surface);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: 4px;
  min-width: 120px;
}

.onemoreturntonight_btn_spin {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
}

.onemoreturntonight_btn_spin:hover {
  background: var(--accent);
  color: #000;
}

.onemoreturntonight_btn_spin:disabled {
  background: #555;
  color: #888;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.onemoreturntonight_game_status {
  text-align: center;
  padding: 15px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  font-weight: bold;
  color: var(--accent);
  min-height: 50px;
}

.onemoreturntonight_game_history {
  margin-top: 20px;
  border-top: 1px dashed rgba(255,255,255,0.1);
  padding-top: 15px;
}

.onemoreturntonight_game_history h4 {
  font-size: 0.9rem;
  color: var(--text-sub);
  margin-bottom: 10px;
}

.onemoreturntonight_game_history ul {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.onemoreturntonight_game_history li {
  background: var(--surface);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.onemoreturntonight_game_cta {
  text-align: center;
  margin-top: 30px;
}

.onemoreturntonight_game_cta p {
  margin-bottom: 15px;
  color: var(--text-sub);
}

.onemoreturntonight_lobby_main {
  padding: 40px 0;
}

.onemoreturntonight_lobby_split {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.onemoreturntonight_lobby_featured {
  flex: 1;
}

.onemoreturntonight_lobby_sidebar {
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.onemoreturntonight_sidebar_wallet, 
.onemoreturntonight_game_list, 
.onemoreturntonight_sidebar_history {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 8px;
}

.onemoreturntonight_sidebar_wallet h3,
.onemoreturntonight_game_list h3,
.onemoreturntonight_sidebar_history h3 {
  font-size: 1.1rem;
  color: var(--text-sub);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.onemoreturntonight_sidebar_balance {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  text-align: center;
}

.onemoreturntonight_game_select_btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 15px;
  background: rgba(0,0,0,0.2);
  border: 1px solid transparent;
  color: #fff;
  margin-bottom: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.onemoreturntonight_game_select_btn:hover {
  background: rgba(255,255,255,0.05);
}

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

.onemoreturntonight_sidebar_history ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.onemoreturntonight_sidebar_history li {
  background: rgba(0,0,0,0.2);
  padding: 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  border-left: 2px solid var(--text-sub);
}

.onemoreturntonight_sidebar_history li.win {
  border-left-color: var(--accent);
  color: var(--accent);
}

.onemoreturntonight_game_visual_area {
  background: #000;
  border-radius: 8px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244,185,66,0.3);
}

.onemoreturntonight_btn_spin_large {
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
  background: var(--accent);
  color: #000;
  margin-top: 15px;
}

.onemoreturntonight_game_status_panel {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onemoreturntonight_bet_panel {
  display: flex;
  gap: 20px;
  width: 100%;
}

.onemoreturntonight_bet_panel > *, .onemoreturntonight_bet_panel > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.onemoreturntonight_bet_panel label {
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: var(--text-sub);
}

.onemoreturntonight_bet_panel select {
  padding: 12px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 4px;
}

.onemoreturntonight_slot_container {
  position: relative;
  width: 80%;
  max-width: 500px;
  height: 80%;
}

.onemoreturntonight_slot_frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.onemoreturntonight_reels_wrapper {
  position: absolute;
  top: 12%;
  left: 10%;
  width: 80%;
  height: 76%;
  display: flex;
  gap: 5%;
  z-index: 2;
  overflow: hidden;
}

.onemoreturntonight_reel {
  flex: 1;
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.onemoreturntonight_reel img {
  width: 100%;
  height: 33.33%;
  object-fit: contain;
  padding: 10px;
}

.onemoreturntonight_payline {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 4px;
  background: rgba(244,185,66,0.5);
  box-shadow: 0 0 10px var(--accent);
  z-index: 10;
  transform: translateY(-50%);
  pointer-events: none;
}

.onemoreturntonight_page_header {
  background: linear-gradient(rgba(10, 16, 34, 0.9), rgba(10, 16, 34, 0.9)), url('assets/images/background-brass-cogs.webp') center/cover;
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 2px solid var(--primary);
}

.onemoreturntonight_page_header .onemoreturntonight_h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.onemoreturntonight_page_subtitle {
  font-size: 1.2rem;
  color: var(--text-sub);
}

.onemoreturntonight_content_block {
  padding: 60px 0;
}

.onemoreturntonight_content_block p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.onemoreturntonight_contact_form_area, .onemoreturntonight_contact_info_area {
  background: var(--surface);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.onemoreturntonight_form_group {
  margin-bottom: 20px;
}

.onemoreturntonight_form_group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-sub);
}

.onemoreturntonight_form_group input, .onemoreturntonight_form_group textarea {
  width: 100%;
  padding: 12px;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 4px;
}

.onemoreturntonight_form_group input:focus, .onemoreturntonight_form_group textarea:focus {
  border-color: var(--accent);
}

.onemoreturntonight_info_block {
  margin-bottom: 30px;
}

.onemoreturntonight_info_block h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.onemoreturntonight_policy_main {
  background: var(--surface);
}

.onemoreturntonight_policy_content {
  padding: 60px 0;
  max-width: 900px;
  margin: 0 auto;
}

.onemoreturntonight_policy_intro {
  font-size: 1.2rem;
  color: var(--text-sub);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.onemoreturntonight_policy_content h2 {
  color: var(--accent);
  margin-top: 40px;
  margin-bottom: 20px;
}

.onemoreturntonight_policy_content p, .onemoreturntonight_policy_content ul, .onemoreturntonight_policy_content ol {
  margin-bottom: 20px;
}

.onemoreturntonight_policy_content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.onemoreturntonight_policy_content li {
  margin-bottom: 10px;
}

.onemoreturntonight_table_wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

.onemoreturntonight_table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
}

.onemoreturntonight_table th, .onemoreturntonight_table td {
  padding: 15px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
}

.onemoreturntonight_table th {
  background: var(--primary);
  font-family: var(--font-heading);
  color: #fff;
}

.onemoreturntonight_footer {
  background: #050811;
  padding: 60px 0 20px;
  border-top: 4px solid var(--accent);
}

.onemoreturntonight_footer_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.onemoreturntonight_footer h4 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.onemoreturntonight_footer p, .onemoreturntonight_footer li {
  color: var(--text-sub);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.onemoreturntonight_footer_links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.onemoreturntonight_footer_responsible .onemoreturntonight_btn_text {
  margin-top: 15px;
  font-size: 0.9rem;
}

.onemoreturntonight_footer_partners {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.onemoreturntonight_footer_partners a {
  display: inline-block;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  transition: opacity 0.3s;
}

.onemoreturntonight_footer_partners a:hover {
  opacity: 0.8;
}

.onemoreturntonight_footer_partners img {
  height: 40px;
  width: auto;
}

.onemoreturntonight_partner_gamcare {
  background: #fff !important;
}

.onemoreturntonight_partner_aware {
  background: #222 !important;
}

.onemoreturntonight_footer_bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.onemoreturntonight_footer_clock_btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
}

.onemoreturntonight_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.onemoreturntonight_modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.onemoreturntonight_modal_content {
  background: var(--surface);
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  border: 2px solid var(--accent);
  transform: translateY(20px);
  transition: var(--transition);
}

.onemoreturntonight_modal[aria-hidden="false"] .onemoreturntonight_modal_content {
  transform: translateY(0);
}

.onemoreturntonight_modal_close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.onemoreturntonight_notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent);
  color: #000;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.onemoreturntonight_notification.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (max-width: 1024px) {
  .onemoreturntonight_hero_content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .onemoreturntonight_hero_text {
    margin: 0 auto;
  }
  .onemoreturntonight_hero_legal_strip {
    text-align: left;
  }
  .onemoreturntonight_lobby_split {
    flex-direction: column;
  }
  .onemoreturntonight_lobby_sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .onemoreturntonight_lobby_sidebar > div {
    flex: 1;
    min-width: 250px;
  }
}

@media (max-width: 768px) {
  .onemoreturntonight_burger {
    display: block;
  }
  .onemoreturntonight_nav {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 20px;
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 99;
    border-bottom: 2px solid var(--accent);
  }
  .onemoreturntonight_nav.is-open {
    transform: translateY(0);
  }
  .onemoreturntonight_nav_list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .onemoreturntonight_header_actions {
    display: none;
  }
  .onemoreturntonight_nav.is-open + .onemoreturntonight_header_actions {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: var(--surface);
      padding: 15px;
      justify-content: center;
      border-bottom: 1px solid var(--accent);
  }
  .onemoreturntonight_hero .onemoreturntonight_h1 {
    font-size: 2.5rem;
  }
  .onemoreturntonight_bet_panel {
      flex-direction: column;
      gap: 10px;
  }
  .onemoreturntonight_game_controls {
      flex-direction: column;
      align-items: stretch;
  }
  .onemoreturntonight_btn_spin {
      width: 100%;
      padding: 15px;
  }
}

@media (max-width: 480px) {
  .onemoreturntonight_wheel_container {
      width: 250px;
      height: 250px;
  }
  .onemoreturntonight_stat_val {
      font-size: 3rem;
  }
  .onemoreturntonight_game_visual_area {
      height: 350px;
  }
}

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