:root {
  --tenidflot-primary: #E63956;
  --tenidflot-primary-hover: #c42f48;
  --tenidflot-secondary: #8C1D3A;
  --tenidflot-accent: #FFB86B;
  --tenidflot-background: #0D0D12;
  --tenidflot-surface: #1A1A24;
  --tenidflot-surface-light: #2a2a38;
  --tenidflot-text-primary: #FAF1F3;
  --tenidflot-text-secondary: #C6B4BA;
  --tenidflot-text-muted: #8d7a80;
  --tenidflot-border: #3b3b4f;
  
  --tenidflot-font-heading: 'Playfair Display', Georgia, serif;
  --tenidflot-font-body: 'Lora', Georgia, serif;
  --tenidflot-radius: 4px;
  --tenidflot-transition: all 0.3s ease;
  
  --tenidflot-header-height: 70px;
  --tenidflot-wallet-height: 50px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.tenidflot_body {
  margin: 0;
  padding: 0;
  font-family: var(--tenidflot-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tenidflot-text-primary);
  background-color: var(--tenidflot-background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: var(--tenidflot-wallet-height);
}

.tenidflot_body.modal-open {
  overflow: hidden;
}

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

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

a:hover {
  text-decoration: underline;
}

.tenidflot_h1, .tenidflot_h2, .tenidflot_h3, .tenidflot_h4 {
  font-family: var(--tenidflot-font-heading);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tenidflot_h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.tenidflot_h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.tenidflot_h3 {
  font-size: 1.5rem;
}

.tenidflot_center {
  text-align: center;
}

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

.tenidflot_section {
  padding: 60px 0;
}

.tenidflot_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--tenidflot-font-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--tenidflot-radius);
  cursor: pointer;
  transition: var(--tenidflot-transition);
  text-decoration: none;
  text-align: center;
  min-height: 44px;
}

.tenidflot_btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tenidflot_btn_primary {
  background-color: var(--tenidflot-primary);
  color: #fff;
}

.tenidflot_btn_primary:hover:not(:disabled) {
  background-color: var(--tenidflot-primary-hover);
  text-decoration: none;
}

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

.tenidflot_btn_secondary:hover:not(:disabled) {
  background-color: rgba(255, 184, 107, 0.1);
  text-decoration: none;
}

.tenidflot_btn_choice {
  background-color: var(--tenidflot-surface-light);
  color: var(--tenidflot-text-primary);
  border: 1px solid var(--tenidflot-border);
  flex: 1;
}

.tenidflot_btn_choice:hover:not(:disabled) {
  background-color: var(--tenidflot-secondary);
  border-color: var(--tenidflot-primary);
}

.tenidflot_btn_choice.is-selected {
  background-color: var(--tenidflot-primary);
  color: #fff;
  border-color: var(--tenidflot-accent);
}

.tenidflot_btn_full {
  width: 100%;
}

.tenidflot_btn_large {
  padding: 15px 30px;
  font-size: 1.125rem;
}

.tenidflot_input, .tenidflot_select {
  width: 100%;
  padding: 12px;
  background-color: var(--tenidflot-background);
  border: 1px solid var(--tenidflot-border);
  color: var(--tenidflot-text-primary);
  border-radius: var(--tenidflot-radius);
  font-family: var(--tenidflot-font-body);
  min-height: 44px;
}

.tenidflot_input:focus, .tenidflot_select:focus {
  outline: none;
  border-color: var(--tenidflot-accent);
}

.tenidflot_form_group {
  margin-bottom: 15px;
}

.tenidflot_form_group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

.tenidflot_badge {
  display: inline-block;
  padding: 2px 8px;
  background-color: var(--tenidflot-secondary);
  color: var(--tenidflot-text-primary);
  font-size: 0.75rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tenidflot_header {
  background-color: var(--tenidflot-surface);
  border-bottom: 2px solid var(--tenidflot-secondary);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--tenidflot-header-height);
}

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

.tenidflot_logo_link {
  font-family: var(--tenidflot-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tenidflot-accent);
  text-decoration: none;
}

.tenidflot_logo_link:hover {
  text-decoration: none;
}

.tenidflot_nav_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.tenidflot_nav_link {
  color: var(--tenidflot-text-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.tenidflot_nav_link:hover, .tenidflot_nav_link.is-active {
  color: var(--tenidflot-accent);
  text-decoration: none;
}

.tenidflot_auth_container {
  display: flex;
  gap: 10px;
}

.tenidflot_burger_menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 101;
}

.tenidflot_burger_line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--tenidflot-text-primary);
  margin-bottom: 5px;
  transition: var(--tenidflot-transition);
}

@media (max-width: 768px) {
  .tenidflot_burger_menu {
    display: block;
  }
  
  .tenidflot_nav {
    position: fixed;
    top: var(--tenidflot-header-height);
    left: 0;
    width: 100%;
    background-color: var(--tenidflot-surface);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--tenidflot-transition);
    border-bottom: 2px solid var(--tenidflot-secondary);
    z-index: 99;
  }
  
  .tenidflot_nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .tenidflot_nav_list {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .tenidflot_auth_container {
    display: none;
  }
}

.tenidflot_main {
  flex: 1;
}

.tenidflot_hero_side_rail {
  background-color: var(--tenidflot-surface);
  padding: 0;
  border-bottom: 1px solid var(--tenidflot-border);
}

.tenidflot_hero_content {
  display: flex;
  min-height: 60vh;
}

.tenidflot_hero_text_col {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tenidflot_hero_media_col {
  flex: 1;
  position: relative;
  background-color: var(--tenidflot-background);
}

.tenidflot_hero_image_wrapper {
  width: 100%;
  height: 100%;
}

.tenidflot_hero_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tenidflot_trust_badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 15px;
  background-color: rgba(230, 57, 86, 0.1);
  border: 1px solid var(--tenidflot-primary);
  color: var(--tenidflot-accent);
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  align-self: flex-start;
}

.tenidflot_ticker_row {
  background-color: var(--tenidflot-secondary);
  color: var(--tenidflot-text-primary);
  padding: 10px 0;
  overflow: hidden;
  border-top: 1px solid var(--tenidflot-primary);
  border-bottom: 1px solid var(--tenidflot-primary);
}

.tenidflot_ticker_content {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tenidflot_ticker 20s linear infinite;
}

.tenidflot_ticker_item {
  font-family: var(--tenidflot-font-heading);
  font-weight: 700;
  letter-spacing: 1px;
}

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

@media (max-width: 768px) {
  .tenidflot_hero_content {
    flex-direction: column;
  }
  .tenidflot_hero_text_col {
    padding: 40px 20px;
  }
  .tenidflot_hero_media_col {
    min-height: 300px;
  }
}

.tenidflot_social_games_section {
  background-color: var(--tenidflot-background);
}

.tenidflot_section_header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.tenidflot_social_games_zone {
  display: grid;
  grid-template-columns: 1fr;
  max-width: clamp(820px, 72vw, 900px);
  width: 100%;
  margin-inline: auto;
  gap: clamp(20px, 3vw, 28px);
  padding-inline: clamp(14px, 3vw, 24px);
}

.tenidflot_game_card {
  background-color: var(--tenidflot-surface);
  border: 2px solid var(--tenidflot-border);
  border-radius: var(--tenidflot-radius);
  padding: 20px;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tenidflot_game_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--tenidflot-border);
  padding-bottom: 10px;
}

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

.tenidflot_slot_stage_wrapper[data-slot-stage] {
  position: relative;
  background-color: #050508;
  border: 4px solid var(--tenidflot-secondary);
  border-radius: var(--tenidflot-radius);
  min-height: clamp(240px, 18vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.tenidflot_slot_payline {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(230, 57, 86, 0.7);
  transform: translateY(-50%);
  z-index: 50;
  box-shadow: 0 0 10px var(--tenidflot-primary);
}

.tenidflot_slot_reel_window[data-slot-reel-window] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 30;
}

.tenidflot_slot_reel[data-slot-reel] {
  background-color: var(--tenidflot-background);
  border: 1px solid var(--tenidflot-border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
  position: relative;
}

.tenidflot_slot_symbol[data-slot-symbol] {
  display: block;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.1s;
}

.tenidflot_slot_reel.is-spinning .tenidflot_slot_symbol {
  filter: blur(2px);
}

.tenidflot_wheel_stage_wrapper[data-wheel-stage] {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 340px;
  margin: 0 auto;
  background-color: #050508;
  border-radius: 50%;
  border: 4px solid var(--tenidflot-secondary);
  box-sizing: border-box;
  display: grid;
  place-items: center;
}

.tenidflot_wheel_img[data-wheel-img] {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 50%;
  transform-origin: center;
  grid-area: 1 / 1;
}

.tenidflot_wheel_pointer[data-wheel-pointer] {
  grid-area: 1 / 1;
  place-self: start center;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid var(--tenidflot-accent);
  transform: translateY(-10px);
  z-index: 80;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.tenidflot_game_controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: var(--tenidflot-background);
  padding: 15px;
  border-radius: var(--tenidflot-radius);
}

.tenidflot_bet_selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tenidflot_bet_selector label {
  font-weight: 700;
  color: var(--tenidflot-text-secondary);
  white-space: nowrap;
}

.tenidflot_bet_choices {
  display: flex;
  gap: 10px;
}

.tenidflot_game_result {
  text-align: center;
  font-weight: 700;
  padding: 10px;
  background-color: var(--tenidflot-surface-light);
  border-radius: var(--tenidflot-radius);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tenidflot_game_result.win {
  color: var(--tenidflot-accent);
  border: 1px solid var(--tenidflot-accent);
}

.tenidflot_game_history {
  font-size: 0.875rem;
  color: var(--tenidflot-text-secondary);
}

.tenidflot_game_history h4 {
  margin: 0 0 5px 0;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.tenidflot_history_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.tenidflot_history_list li {
  background-color: var(--tenidflot-background);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--tenidflot-border);
}

.tenidflot_cta_wrapper {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .tenidflot_social_games_zone {
    padding-inline: 10px;
  }
  .tenidflot_bet_choices {
    flex-direction: column;
  }
}

.tenidflot_stepper_section {
  background-color: var(--tenidflot-surface);
  border-top: 1px solid var(--tenidflot-border);
}

.tenidflot_stepper_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tenidflot_step_card {
  background-color: var(--tenidflot-background);
  padding: 30px;
  border-radius: var(--tenidflot-radius);
  border: 1px solid var(--tenidflot-border);
  position: relative;
}

.tenidflot_step_num {
  font-family: var(--tenidflot-font-heading);
  font-size: 3rem;
  color: var(--tenidflot-secondary);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.tenidflot_tracker_section {
  background-color: var(--tenidflot-background);
}

.tenidflot_missions_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.tenidflot_mission_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--tenidflot-surface);
  padding: 20px;
  border-left: 4px solid var(--tenidflot-primary);
  border-radius: 0 var(--tenidflot-radius) var(--tenidflot-radius) 0;
}

.tenidflot_mission_info h4 {
  margin: 0 0 5px 0;
  color: var(--tenidflot-accent);
}

.tenidflot_mission_info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--tenidflot-text-secondary);
}

.tenidflot_mission_reward {
  font-family: var(--tenidflot-font-heading);
  font-weight: 700;
  color: var(--tenidflot-accent);
  background-color: rgba(255, 184, 107, 0.1);
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .tenidflot_mission_item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

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

.tenidflot_split_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tenidflot_feature_list {
  list-style: none;
  padding: 0;
}

.tenidflot_feature_list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.tenidflot_feature_list li::before {
  content: '⚙';
  position: absolute;
  left: 0;
  color: var(--tenidflot-accent);
}

.tenidflot_list_centered {
  display: inline-block;
  text-align: left;
}

.tenidflot_info_panel {
  background-color: var(--tenidflot-background);
  border: 2px solid var(--tenidflot-primary);
  padding: 30px;
  border-radius: var(--tenidflot-radius);
}

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

.tenidflot_calendar_section {
  background-color: var(--tenidflot-background);
}

.tenidflot_events_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.tenidflot_event_card {
  background-color: var(--tenidflot-surface);
  padding: 20px;
  border-radius: var(--tenidflot-radius);
  border-top: 3px solid var(--tenidflot-accent);
}

.tenidflot_event_time {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--tenidflot-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

.tenidflot_accordion_item {
  border-bottom: 1px solid var(--tenidflot-border);
}

.tenidflot_accordion_trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--tenidflot-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--tenidflot-text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tenidflot_accordion_icon {
  color: var(--tenidflot-accent);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

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

.tenidflot_accordion_content {
  padding-bottom: 20px;
  color: var(--tenidflot-text-secondary);
}

.tenidflot_wallet_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--tenidflot-wallet-height);
  background-color: var(--tenidflot-background);
  border-top: 2px solid var(--tenidflot-secondary);
  z-index: 90;
  display: flex;
  align-items: center;
}

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

.tenidflot_wallet_balance {
  font-family: var(--tenidflot-font-heading);
  font-size: 1.25rem;
}

.tenidflot_wallet_label {
  color: var(--tenidflot-text-secondary);
  font-size: 1rem;
}

.tenidflot_wallet_amount {
  color: var(--tenidflot-accent);
  font-weight: 700;
}

.tenidflot_wallet_currency {
  color: var(--tenidflot-accent);
  font-size: 0.875rem;
}

.tenidflot_wallet_status {
  font-size: 0.875rem;
  color: var(--tenidflot-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tenidflot_footer {
  background-color: #050508;
  padding: 60px 0 20px;
  border-top: 1px solid var(--tenidflot-border);
  margin-bottom: var(--tenidflot-wallet-height);
}

.tenidflot_footer_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tenidflot_footer_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.tenidflot_footer_heading {
  color: var(--tenidflot-accent);
  margin-bottom: 20px;
}

.tenidflot_footer_desc, .tenidflot_identity_block, .tenidflot_footer_rg_text {
  font-size: 0.875rem;
  color: var(--tenidflot-text-secondary);
  margin-bottom: 15px;
}

.tenidflot_identity_block p {
  margin: 0 0 5px 0;
}

.tenidflot_footer_links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.tenidflot_footer_links a {
  color: var(--tenidflot-text-secondary);
  font-size: 0.875rem;
}

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

.tenidflot_partner_logos {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.tenidflot_partner_link {
  display: inline-block;
  padding: 10px;
  border-radius: var(--tenidflot-radius);
}

.tenidflot_partner_dark {
  background-color: #111;
}

.tenidflot_partner_light {
  background-color: #fff;
}

.tenidflot_partner_img {
  height: 30px;
  width: auto;
}

.tenidflot_footer_bottom {
  border-top: 1px solid var(--tenidflot-border);
  padding-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--tenidflot-text-muted);
}

.tenidflot_disclaimer_text {
  margin-bottom: 10px;
}

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

.tenidflot_modal.is-open {
  opacity: 1;
  visibility: visible;
}

.tenidflot_modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.tenidflot_modal_content {
  position: relative;
  background-color: var(--tenidflot-surface);
  border: 2px solid var(--tenidflot-primary);
  padding: 40px;
  width: 90%;
  max-width: 500px;
  border-radius: var(--tenidflot-radius);
  z-index: 1001;
}

.tenidflot_mechanical_gate {
  border-color: var(--tenidflot-secondary);
  background: linear-gradient(to bottom, var(--tenidflot-surface), #111);
  box-shadow: 0 0 30px rgba(140, 29, 58, 0.5);
}

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

.tenidflot_modal_actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

@media (max-width: 600px) {
  .tenidflot_modal_actions {
    flex-direction: column;
  }
}

.tenidflot_accent_text {
  color: var(--tenidflot-accent);
  font-weight: 700;
}

.tenidflot_error_text {
  color: var(--tenidflot-primary);
  font-size: 0.875rem;
  margin-top: 10px;
  text-align: center;
}

.tenidflot_auth_tabs {
  display: flex;
  border-bottom: 1px solid var(--tenidflot-border);
  margin-bottom: 20px;
}

.tenidflot_auth_tab {
  flex: 1;
  background: none;
  border: none;
  padding: 10px;
  color: var(--tenidflot-text-secondary);
  font-family: var(--tenidflot-font-heading);
  font-size: 1.125rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tenidflot_auth_tab.is-active {
  color: var(--tenidflot-accent);
  border-bottom-color: var(--tenidflot-accent);
}

.tenidflot_form.is-active {
  display: block;
}

.tenidflot_form[hidden] {
  display: none;
}

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

.tenidflot_toast {
  background-color: var(--tenidflot-surface-light);
  border-left: 4px solid var(--tenidflot-accent);
  color: var(--tenidflot-text-primary);
  padding: 15px 20px;
  border-radius: var(--tenidflot-radius);
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  min-width: 250px;
  animation: tenidflot_toast_in 0.3s ease forwards;
}

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

.tenidflot_hidden_trigger {
  position: fixed;
  bottom: 60px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0;
  z-index: 10;
}

.tenidflot_page_header {
  background-color: var(--tenidflot-surface);
  border-bottom: 1px solid var(--tenidflot-border);
  text-align: center;
  padding: 80px 20px;
}

.tenidflot_lead_text {
  font-size: 1.25rem;
  color: var(--tenidflot-text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

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

.tenidflot_dark_panel {
  background-color: #08080b;
}

.tenidflot_commitment_block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 30px;
  border: 1px solid var(--tenidflot-border);
  border-radius: var(--tenidflot-radius);
}

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

.tenidflot_profile_card {
  background-color: var(--tenidflot-surface-light);
  padding: 25px;
  border-radius: var(--tenidflot-radius);
  border-top: 3px solid var(--tenidflot-secondary);
}

.tenidflot_contact_grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
}

.tenidflot_contact_form_area {
  background-color: var(--tenidflot-surface);
  padding: 30px;
  border-radius: var(--tenidflot-radius);
}

.tenidflot_contact_info_area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tenidflot_info_card {
  background-color: var(--tenidflot-surface-light);
  padding: 25px;
  border-radius: var(--tenidflot-radius);
}

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

.tenidflot_policy_main {
  background-color: var(--tenidflot-background);
}

.tenidflot_policy_container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--tenidflot-surface);
  padding: 40px;
  border-radius: var(--tenidflot-radius);
}

.tenidflot_policy_content p {
  margin-bottom: 20px;
  color: var(--tenidflot-text-secondary);
}

.tenidflot_lobby_header {
  background-color: var(--tenidflot-surface);
  border-bottom: 1px solid var(--tenidflot-border);
  padding: 40px 20px;
}

.tenidflot_lobby_games {
  padding: 40px 0;
}

.tenidflot_inline_disclaimer {
  text-align: center;
  padding: 20px;
  background-color: rgba(230, 57, 86, 0.1);
  border: 1px solid var(--tenidflot-primary);
  border-radius: var(--tenidflot-radius);
  margin-bottom: 40px;
  color: var(--tenidflot-text-secondary);
}

/* footer-logo-contrast-guard-v2 */
a[href*="begambleaware.org"],
a[href*="gambleaware"] {
  background: #ffffff !important;
  color: #111111 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

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: #ffffff !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="gamcare.org"] {
  background: #fff !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !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: #fff !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

/* social-game-layering-guard-v4 */
[data-home-live-game],
[data-game-card],
[data-slot-game],
[data-slot-stage],
[data-wheel-game],
[data-wheel-stage],
[data-mechanic],
[class*="game_wrapper"],
[class*="game-wrapper"],
[class*="game_board"],
[class*="game-board"],
[class*="slot_board"],
[class*="slot-board"],
[class*="roulette_board"],
[class*="roulette-board"] {
  position: relative !important;
  isolation: isolate !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

[class*="slot"][class*="frame"],
[class*="slot"][class*="bg"],
[class*="slot"][class*="background"],
img[class*="slot_frame"],
img[class*="slot-frame"],
img[class*="frame_img"],
img[class*="frame-img"],
[data-game-mechanic="slot"] [class*="game_visual"] > img:first-child,
[data-game-mechanic="slot"] [class*="game-visual"] > img:first-child,
[data-game-mechanic="slot"] img[class*="game_bg"],
[data-game-mechanic="slot"] img[class*="game-bg"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

[class*="roulette"][class*="wheel"] img,
img[class*="roulette"][class*="wheel"],
[data-wheel-img] {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transform-origin: center !important;
  border-radius: 50% !important;
  clip-path: circle(50% at 50% 50%) !important;
  pointer-events: none !important;
}

[data-wheel-stage],
[data-wheel-game] [class*="wheel_stage"],
[data-wheel-game] [class*="wheel-stage"],
[class*="wheel_board"],
[class*="wheel-board"],
[class*="roulette_board"],
[class*="roulette-board"] {
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  place-items: center !important;
}

[data-game-mechanic="slot"] [class*="game_visual"],
[data-game-mechanic="slot"] [class*="game-visual"] {
  min-height: clamp(260px, 42vw, 560px) !important;
  aspect-ratio: 4 / 3 !important;
  position: relative !important;
  overflow: hidden !important;
}

[data-slot-stage],
[data-slot-game] [class*="slot_stage"],
[data-slot-game] [class*="slot-stage"],
[data-game-mechanic="slot"] [class*="slot_board"],
[data-game-mechanic="slot"] [class*="slot-board"] {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  aspect-ratio: 16 / 7 !important;
  display: grid !important;
  align-items: center !important;
}

[data-slot-reel-window],
[data-slot-game] [class*="slot_reel_window"],
[data-slot-game] [class*="slot-reel-window"],
[data-slot-game] [class*="reel_window"],
[data-slot-game] [class*="reel-window"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: clamp(170px, 22vw, 320px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: clamp(0.55rem, 1.5vw, 1.2rem) !important;
  overflow: hidden !important;
  position: relative !important;
}

[class*="slot_reels"],
[class*="slot-reels"],
[class*="reels"],
[data-home-live-game] [data-reel-index] {
  position: absolute !important;
  left: 10% !important;
  right: 10% !important;
  top: 35% !important;
  bottom: 35% !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: clamp(0.45rem, 1.4vw, 1.1rem) !important;
  z-index: 60 !important;
  pointer-events: none !important;
}

[data-slot-symbol],
[class*="slot_symbol"],
[class*="slot-symbol"],
[class*="reel"] img,
[data-home-live-game] [data-reel-index] img {
  position: relative !important;
  z-index: 70 !important;
  display: block !important;
  width: clamp(72px, 62%, 170px) !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 88% !important;
  object-fit: contain !important;
}

[class*="slot_reel"]:not([class*="window"]),
[class*="slot-reel"]:not([class*="window"]),
[data-slot-reel],
[data-home-live-game] [data-reel-index] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: clamp(72px, 10vw, 150px) !important;
  background: rgba(2, 8, 18, 0.88) !important;
  border: 2px solid rgba(255,255,255,0.78) !important;
  border-radius: 0.85rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16), 0 0.9rem 1.8rem rgba(0,0,0,0.35) !important;
}

[class*="roulette"][class*="pointer"],
[class*="wheel"][class*="pointer"],
[data-wheel-pointer],
[data-home-live-game] [data-roulette-bet],
[data-home-live-game] [class*="game_ui"],
[data-home-live-game] [class*="game-ui"],
[data-home-live-game] [class*="game_controls"],
[data-home-live-game] [class*="game-controls"],
[data-home-live-game] [class*="bet"],
[data-home-live-game] [class*="result"],
[data-home-live-game] [class*="status"],
[data-home-live-game] button,
[data-home-live-game] select,
[data-home-live-game] input {
  position: relative !important;
  z-index: 90 !important;
}
