:root {
  --primary: #4CC9F0;
  --secondary: #3A86FF;
  --accent: #80FFDB;
  --background: #08101A;
  --surface: #152231;
  --surface-hover: #1c2c3f;
  --text-primary: #EDF8FF;
  --text-secondary: #A9C0D4;
  --heading-font: 'Orbitron', sans-serif;
  --body-font: 'Inter', sans-serif;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

body.truenorthgame_body {
  font-family: var(--body-font);
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--text-primary);
}

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

a:hover {
  color: var(--accent);
}

.truenorthgame_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.truenorthgame_btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.truenorthgame_btn_primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
}

.truenorthgame_btn_primary:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #08101A;
  box-shadow: 0 6px 20px rgba(128, 255, 219, 0.4);
}

.truenorthgame_btn_outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.truenorthgame_btn_outline:hover {
  background: rgba(76, 201, 240, 0.1);
}

.truenorthgame_btn_full {
  width: 100%;
}

.truenorthgame_header {
  background-color: var(--surface);
  border-bottom: 1px solid rgba(76, 201, 240, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.truenorthgame_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.truenorthgame_logo span {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.truenorthgame_nav_link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.truenorthgame_nav_link:hover, .truenorthgame_nav_link.truenorthgame_active {
  color: var(--accent);
}

.truenorthgame_auth_controls {
  display: flex;
  gap: 1rem;
}

.truenorthgame_burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 102;
}

.truenorthgame_burger_line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: var(--transition);
}

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

.truenorthgame_burger_line:nth-child(2) { top: 9px; }

.truenorthgame_burger_line:nth-child(3) { top: 18px; }

.truenorthgame_burger[aria-expanded="true"] .truenorthgame_burger_line:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

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

.truenorthgame_burger[aria-expanded="true"] .truenorthgame_burger_line:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

.truenorthgame_mobile_nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--surface);
  z-index: 101;
  padding: 100px 2rem 2rem;
  transition: right 0.3s ease;
  border-left: 1px solid rgba(76, 201, 240, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.truenorthgame_mobile_nav.is-open {
  right: 0;
}

.truenorthgame_mobile_nav_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.truenorthgame_mobile_nav_link {
  font-size: 1.25rem;
  display: block;
  color: var(--text-primary);
}

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

.truenorthgame_age_strip {
  background-color: #000;
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 2px solid var(--primary);
  font-size: 0.85rem;
}

.truenorthgame_age_badge {
  background-color: var(--primary);
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
  margin-right: 10px;
}

.truenorthgame_main {
  flex: 1;
}

.truenorthgame_section {
  padding: 5rem 0;
}

.truenorthgame_alt_bg {
  background-color: var(--surface);
}

.truenorthgame_section_title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.truenorthgame_section_desc {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.truenorthgame_grid {
  display: grid;
  gap: 2rem;
}

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

.truenorthgame_grid_3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.truenorthgame_card {
  background-color: var(--surface);
  border: 1px solid rgba(76, 201, 240, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
}

.truenorthgame_card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.truenorthgame_card_title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.truenorthgame_card_desc {
  color: var(--text-secondary);
}

.truenorthgame_hero_gradient {
  background: radial-gradient(circle at center, var(--surface) 0%, var(--background) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.truenorthgame_hero_title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.truenorthgame_hero_subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.truenorthgame_hero_cta_group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.truenorthgame_hero_ticker {
  background-color: rgba(21, 34, 49, 0.8);
  padding: 1rem 0;
  border-top: 1px solid rgba(76, 201, 240, 0.2);
  border-bottom: 1px solid rgba(76, 201, 240, 0.2);
  overflow: hidden;
}

.truenorthgame_ticker_track {
  display: flex;
  white-space: nowrap;
  animation: scrollTicker 20s linear infinite;
  gap: 2rem;
  font-family: var(--heading-font);
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.truenorthgame_ticker_separator {
  color: var(--text-secondary);
}

.truenorthgame_step_card {
  position: relative;
  text-align: center;
}

.truenorthgame_step_number {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem;
}

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

.truenorthgame_split_content .truenorthgame_section_title,
.truenorthgame_split_content .truenorthgame_section_desc {
  text-align: left;
  margin-left: 0;
}

.truenorthgame_image_wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(76, 201, 240, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.truenorthgame_image {
  width: 100%;
  height: auto;
  display: block;
}

.truenorthgame_form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.truenorthgame_form_group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.truenorthgame_form_label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.truenorthgame_form_input {
  background-color: rgba(8, 16, 26, 0.8);
  border: 1px solid rgba(76, 201, 240, 0.3);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 1rem;
  transition: var(--transition);
}

.truenorthgame_form_input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(76, 201, 240, 0.2);
}

select.truenorthgame_form_input {
  appearance: none;
}

.truenorthgame_accordion_item {
  border: 1px solid rgba(76, 201, 240, 0.2);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  background-color: var(--surface);
  overflow: hidden;
}

.truenorthgame_accordion_trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.5rem;
  color: var(--text-primary);
  font-family: var(--heading-font);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.truenorthgame_accordion_icon {
  color: var(--primary);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.truenorthgame_accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
}

.truenorthgame_accordion_trigger[aria-expanded="true"] + .truenorthgame_accordion_content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.truenorthgame_live_game_module, .truenorthgame_playable_module {
  background-color: var(--surface);
  border: 1px solid rgba(76, 201, 240, 0.3);
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}

.truenorthgame_game_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(76, 201, 240, 0.1);
  padding-bottom: 1rem;
}

.truenorthgame_game_title {
  font-size: 1.5rem;
  color: var(--accent);
}

.truenorthgame_wallet_mirror {
  font-family: var(--heading-font);
  color: var(--primary);
  background-color: rgba(76, 201, 240, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.truenorthgame_slot_board {
  display: flex;
  justify-content: center;
  gap: 1rem;
  background-color: #000;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid #333;
  position: relative;
  margin-bottom: 2rem;
  height: 200px;
  overflow: hidden;
}

.truenorthgame_slot_reel {
  width: 120px;
  height: 100%;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.truenorthgame_slot_symbol {
  width: 80%;
  height: auto;
  transition: transform 0.1s linear;
}

.truenorthgame_slot_symbol.is-spinning {
  animation: symbolBlur 0.2s linear infinite;
}

@keyframes symbolBlur {
  0% { transform: translateY(-50px) scaleY(1.2); opacity: 0.5; }
  100% { transform: translateY(50px) scaleY(1.2); opacity: 0.5; }
}

.truenorthgame_laser_payline {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  box-shadow: 0 0 10px var(--primary), 0 0 20px var(--accent);
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0.8;
}

.truenorthgame_game_controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.truenorthgame_bet_select {
  flex: 1;
  background-color: rgba(8, 16, 26, 0.8);
  border: 1px solid var(--primary);
  color: var(--text-primary);
  padding: 0.75rem;
  border-radius: 4px;
  font-family: var(--heading-font);
}

.truenorthgame_spin_btn {
  flex: 2;
  font-size: 1.2rem;
}

.truenorthgame_game_result {
  text-align: center;
  font-size: 1.2rem;
  min-height: 2rem;
  color: var(--text-secondary);
  font-family: var(--heading-font);
  margin-bottom: 1rem;
}

.truenorthgame_game_result.win {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(128, 255, 219, 0.5);
}

.truenorthgame_game_history {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.truenorthgame_history_item {
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  background-color: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.truenorthgame_history_item.win {
  background-color: rgba(128, 255, 219, 0.2);
  color: var(--accent);
}

.truenorthgame_game_footer_cta {
  text-align: center;
  border-top: 1px solid rgba(76, 201, 240, 0.1);
  padding-top: 1.5rem;
}

.truenorthgame_wheel_board_wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 2rem;
}

.truenorthgame_wheel_image {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 2.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.truenorthgame_wheel_pointer {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(128, 255, 219, 0.8);
  z-index: 10;
}

.truenorthgame_page_header {
  background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(76, 201, 240, 0.1);
}

.truenorthgame_page_title {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.truenorthgame_timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.truenorthgame_timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: rgba(76, 201, 240, 0.3);
}

.truenorthgame_timeline_item {
  position: relative;
  margin-bottom: 3rem;
}

.truenorthgame_timeline_marker {
  position: absolute;
  left: -2rem;
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--primary);
}

.truenorthgame_timeline_content h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

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

.truenorthgame_prose_block p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

.truenorthgame_hotspot {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(128, 255, 219, 0.2);
  border: 2px solid var(--accent);
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.truenorthgame_hotspot:hover {
  background: rgba(128, 255, 219, 0.5);
  box-shadow: 0 0 20px rgba(128, 255, 219, 0.8);
}

.truenorthgame_lobby_layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
}

.truenorthgame_wallet_panel {
  background-color: var(--surface);
  border: 1px solid rgba(76, 201, 240, 0.3);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.truenorthgame_wallet_title {
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.truenorthgame_balance_display {
  background-color: #000;
  border: 1px solid var(--primary);
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.truenorthgame_balance_label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.truenorthgame_balance_amount {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--accent);
}

.truenorthgame_currency_symbol {
  font-family: var(--heading-font);
  color: var(--primary);
}

.truenorthgame_rank_display {
  margin-bottom: 2rem;
}

.truenorthgame_rank_label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.truenorthgame_rank_val {
  display: block;
  color: var(--text-primary);
  font-family: var(--heading-font);
  font-weight: bold;
  margin-top: 0.2rem;
}

.truenorthgame_game_stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.truenorthgame_premium_lock {
  border: 1px dashed var(--text-secondary);
  background-color: rgba(21, 34, 49, 0.5);
  text-align: center;
  opacity: 0.7;
}

.truenorthgame_legal_content h2 {
  color: var(--primary);
  margin: 2.5rem 0 1rem;
  font-size: 1.5rem;
}

.truenorthgame_legal_content ul, .truenorthgame_legal_content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.truenorthgame_legal_content li {
  margin-bottom: 0.5rem;
}

.truenorthgame_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

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

.truenorthgame_table th {
  background-color: var(--surface);
  color: var(--primary);
  font-family: var(--heading-font);
}

.truenorthgame_table td {
  color: var(--text-secondary);
}

.truenorthgame_stepper {
  background-color: var(--surface);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.truenorthgame_footer {
  background-color: #04080d;
  border-top: 1px solid rgba(76, 201, 240, 0.2);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

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

.truenorthgame_footer_heading {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.truenorthgame_footer_identity p, .truenorthgame_footer_commitment p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.truenorthgame_footer_links ul {
  list-style: none;
}

.truenorthgame_footer_links li {
  margin-bottom: 0.5rem;
}

.truenorthgame_footer_links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.truenorthgame_footer_rg_label {
  font-weight: bold;
  color: var(--primary);
}

.truenorthgame_footer_partners {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.truenorthgame_partner_link {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 4px;
  width: 120px;
}

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

.truenorthgame_partner_dark_bg {
  background-color: #222;
}

.truenorthgame_partner_light_bg {
  background-color: #fff;
}

.truenorthgame_footer_bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
}

.truenorthgame_footer_disclaimer {
  font-size: 0.8rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 1rem;
}

.truenorthgame_footer_copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.truenorthgame_modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.truenorthgame_modal_overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.truenorthgame_modal {
  background-color: var(--surface);
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  width: 90%;
  max-width: 450px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.truenorthgame_modal_overlay.is-active .truenorthgame_modal {
  transform: translateY(0);
}

.truenorthgame_modal[hidden] {
  display: none;
}

.truenorthgame_modal_title {
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--accent);
}

.truenorthgame_modal_close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.truenorthgame_modal_close:hover {
  color: var(--primary);
}

.truenorthgame_toast_container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1100;
}

.truenorthgame_toast {
  background-color: var(--surface);
  border-left: 4px solid var(--primary);
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  animation: slideIn 0.3s ease forwards;
  max-width: 300px;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
  
  .truenorthgame_hero_title { font-size: 2.5rem; }
  
  .truenorthgame_split_layout { grid-template-columns: 1fr; gap: 2rem; }
  
  .truenorthgame_lobby_layout {
    grid-template-columns: 1fr;
  }
  
  .truenorthgame_wallet_panel {
    position: static;
    margin-bottom: 2rem;
  }
  
  .truenorthgame_game_controls {
    flex-direction: column;
  }
  
  .truenorthgame_slot_board {
    height: 150px;
    padding: 1rem;
  }
  
  .truenorthgame_slot_reel {
    width: 80px;
  }
  
  .truenorthgame_wheel_board_wrapper {
    width: 250px;
    height: 250px;
  }
}

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