:root {
--p-color: #FF9F43;
--s-color: #F76F5E;
--a-color: #FFE082;
--bg-color: #141127;
--surf-color: #221B3A;
--t-prim: #FFF6EA;
--t-sec: #D8C4AF;
--font-head: 'Cinzel', serif;
--font-body: 'Lora', serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body.smartbettingcorner_body {
font-family: var(--font-body);
background-color: var(--bg-color);
color: var(--t-sec);
line-height: 1.65;
font-size: 16px;
overflow-x: hidden;
}
h1, h2, h3, h4 {
font-family: var(--font-head);
color: var(--t-prim);
font-weight: 700;
margin-bottom: 1rem;
}
a {
color: var(--p-color);
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: var(--a-color);
}
.smartbettingcorner_container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 2rem 0;
}
.smartbettingcorner_header {
background-color: rgba(20, 17, 39, 0.95);
border-bottom: 2px solid var(--p-color);
position: sticky;
top: 0;
z-index: 1000;
}
.smartbettingcorner_header_inner {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 5%;
}
.smartbettingcorner_logo {
font-family: var(--font-head);
font-size: 1.5rem;
color: var(--a-color);
font-weight: bold;
}
.smartbettingcorner_nav {
display: flex;
gap: 1.5rem;
}
.smartbettingcorner_nav_link {
color: var(--t-prim);
font-weight: bold;
text-transform: uppercase;
font-size: 0.9rem;
}
.smartbettingcorner_header_actions {
display: flex;
align-items: center;
gap: 1rem;
}
.smartbettingcorner_wallet_header {
background: var(--surf-color);
border: 1px solid var(--p-color);
padding: 0.3rem 0.8rem;
border-radius: 4px;
display: flex;
gap: 0.5rem;
align-items: center;
}
.smartbettingcorner_wallet_label {
color: var(--p-color);
font-weight: bold;
}
.smartbettingcorner_wallet_amount {
color: var(--t-prim);
font-family: monospace;
font-size: 1.1rem;
}
.smartbettingcorner_age_badge {
background: var(--s-color);
color: #fff;
padding: 0.2rem 0.5rem;
border-radius: 4px;
font-weight: bold;
font-size: 0.8rem;
}
.smartbettingcorner_btn {
background: var(--p-color);
color: var(--bg-color);
border: none;
padding: 0.6rem 1.2rem;
font-family: var(--font-head);
font-weight: bold;
cursor: pointer;
border-radius: 4px;
transition: all 0.3s ease;
display: inline-block;
text-align: center;
}
.smartbettingcorner_btn:hover {
background: var(--a-color);
transform: translateY(-2px);
}
.smartbettingcorner_btn_outline {
background: transparent;
border: 2px solid var(--p-color);
color: var(--p-color);
}
.smartbettingcorner_btn_outline:hover {
background: var(--p-color);
color: var(--bg-color);
}
.smartbettingcorner_btn_large {
font-size: 1.2rem;
padding: 1rem 2rem;
}
.smartbettingcorner_hero {
position: relative;
min-height: 80vh;
display: flex;
align-items: center;
padding: 2rem 5%;
}
.smartbettingcorner_hero_bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--bg-color) 40%, rgba(20,17,39,0.7) 100%);
z-index: 1;
}
.smartbettingcorner_hero_content {
position: relative;
z-index: 2;
display: flex;
flex-wrap: wrap;
gap: 2rem;
width: 100%;
max-width: 1400px;
margin: 0 auto;
align-items: center;
}
.smartbettingcorner_hero_stack {
flex: 1;
min-width: 300px;
}
.smartbettingcorner_hero_title {
font-size: 3.5rem;
line-height: 1.1;
color: var(--a-color);
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.smartbettingcorner_hero_subtitle {
font-size: 1.2rem;
margin: 1.5rem 0;
color: var(--t-prim);
}
.smartbettingcorner_hero_legal_strip {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
font-size: 0.85rem;
color: var(--p-color);
opacity: 0.9;
}
.smartbettingcorner_hero_media {
flex: 1;
min-width: 300px;
position: relative;
}
.smartbettingcorner_hero_img {
width: 100%;
border-radius: 8px;
border: 4px solid var(--surf-color);
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.smartbettingcorner_games_zone {
background: var(--surf-color);
padding: 4rem 0;
min-height: 40vh;
border-top: 2px solid var(--p-color);
border-bottom: 2px solid var(--p-color);
}
.smartbettingcorner_section_title {
text-align: center;
font-size: 2.5rem;
color: var(--a-color);
}
.smartbettingcorner_section_desc {
text-align: center;
margin-bottom: 3rem;
font-size: 1.1rem;
}
.smartbettingcorner_games_grid {
display: flex;
flex-wrap: wrap;
gap: 2rem;
justify-content: center;
}
.smartbettingcorner_game_card {
background: var(--bg-color);
border: 1px solid var(--p-color);
border-radius: 8px;
padding: 1.5rem;
width: 100%;
max-width: 400px;
display: flex;
flex-direction: column;
gap: 1rem;
box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.smartbettingcorner_game_large {
max-width: 600px;
}
.smartbettingcorner_game_title {
text-align: center;
margin: 0;
color: var(--t-prim);
font-size: 1.5rem;
}
.smartbettingcorner_game_board {
position: relative;
width: 100%;
background: #000;
border-radius: 4px;
overflow: hidden;
}
.smartbettingcorner_slot_board {
aspect-ratio: 1/1;
display: flex;
align-items: center;
justify-content: center;
}
.smartbettingcorner_board_frame {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
opacity: 0.6;
}
.smartbettingcorner_reels_container {
position: relative;
z-index: 2;
display: flex;
gap: 5%;
width: 80%;
height: 60%;
justify-content: space-between;
}
.smartbettingcorner_reel {
flex: 1;
background: rgba(255,255,255,0.1);
border: 2px solid var(--p-color);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.smartbettingcorner_slot_symbol {
width: 80%;
height: 80%;
object-fit: contain;
}
.smartbettingcorner_roulette_board {
aspect-ratio: 1/1;
display: flex;
align-items: center;
justify-content: center;
}
.smartbettingcorner_wheel_img {
width: 90%;
height: 90%;
object-fit: contain;
z-index: 1;
transition: transform 3.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.smartbettingcorner_roulette_pointer {
position: absolute;
top: 2%;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 25px solid var(--s-color);
z-index: 10;
}
.smartbettingcorner_game_controls {
display: flex;
flex-direction: column;
gap: 0.8rem;
z-index: 3;
}
.smartbettingcorner_roulette_bets {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: center;
}
.smartbettingcorner_bet_btn {
background: var(--surf-color);
color: var(--t-prim);
border: 1px solid var(--p-color);
padding: 0.4rem 0.8rem;
cursor: pointer;
border-radius: 3px;
transition: background 0.2s;
}
.smartbettingcorner_bet_btn.is-active {
background: var(--p-color);
color: var(--bg-color);
}
.smartbettingcorner_bet_group {
display: flex;
justify-content: space-between;
align-items: center;
}
.smartbettingcorner_bet_input {
background: var(--surf-color);
color: var(--t-prim);
border: 1px solid var(--p-color);
padding: 0.4rem;
}
.smartbettingcorner_btn_play {
width: 100%;
font-size: 1.2rem;
padding: 0.8rem;
}
.smartbettingcorner_btn_haggle {
background: var(--surf-color);
color: var(--a-color);
border: 1px dashed var(--a-color);
padding: 0.4rem;
cursor: pointer;
font-size: 0.8rem;
}
.smartbettingcorner_game_status {
text-align: center;
font-weight: bold;
min-height: 1.5em;
color: var(--a-color);
}
.smartbettingcorner_games_more {
text-align: center;
margin-top: 2rem;
}
.smartbettingcorner_lore_block {
position: relative;
padding: 6rem 5%;
background-size: cover;
background-position: center;
border-bottom: 2px solid var(--p-color);
}
.smartbettingcorner_lore_overlay {
background: rgba(20, 17, 39, 0.85);
padding: 3rem;
max-width: 800px;
margin: 0 auto;
border: 1px solid var(--p-color);
border-radius: 8px;
text-align: center;
position: relative;
}
.smartbettingcorner_easter_egg_trigger {
width: 50px;
height: 50px;
cursor: pointer;
position: absolute;
bottom: -25px;
right: 20px;
border-radius: 50%;
border: 2px solid var(--a-color);
}
.smartbettingcorner_flex_row {
display: flex;
flex-wrap: wrap;
gap: 2rem;
}
.smartbettingcorner_half {
flex: 1;
min-width: 300px;
background: var(--surf-color);
padding: 2rem;
border-radius: 8px;
border-left: 4px solid var(--p-color);
}
.smartbettingcorner_fact_list li {
margin-bottom: 1rem;
}
.smartbettingcorner_tiers_grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.smartbettingcorner_tier_card {
background: var(--surf-color);
padding: 1.5rem;
border-top: 3px solid var(--a-color);
text-align: center;
}
.smartbettingcorner_accordion {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.smartbettingcorner_acc_trigger {
background: var(--surf-color);
color: var(--t-prim);
border: 1px solid var(--p-color);
padding: 1rem;
width: 100%;
text-align: left;
font-family: var(--font-head);
font-size: 1.1rem;
cursor: pointer;
}
.smartbettingcorner_acc_panel {
background: rgba(34, 27, 58, 0.5);
padding: 0 1rem;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
}
.smartbettingcorner_acc_panel.is-open {
padding: 1rem;
max-height: 200px;
}
.smartbettingcorner_footer {
background: #0d0a1a;
padding: 3rem 0 1rem;
border-top: 2px solid var(--p-color);
font-size: 0.9rem;
}
.smartbettingcorner_footer_grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.smartbettingcorner_footer_col h4 {
color: var(--a-color);
margin-bottom: 1rem;
font-size: 1.1rem;
}
.smartbettingcorner_footer_col a {
display: block;
margin-bottom: 0.5rem;
}
.smartbettingcorner_partners {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.smartbettingcorner_partner_link img {
max-width: 120px;
height: auto;
display: block;
}
.smartbettingcorner_partner_dark {
background: #333;
padding: 5px;
border-radius: 4px;
}
.smartbettingcorner_partner_light {
background: #fff;
padding: 5px;
border-radius: 4px;
}
.smartbettingcorner_copyright {
text-align: center;
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 1rem;
font-size: 0.8rem;
}
.smartbettingcorner_modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.9);
z-index: 2000;
align-items: center;
justify-content: center;
}
.smartbettingcorner_modal.is-active {
display: flex;
}
.smartbettingcorner_modal_content {
background: var(--surf-color);
padding: 3rem;
border: 2px solid var(--p-color);
border-radius: 8px;
max-width: 500px;
width: 90%;
text-align: center;
position: relative;
}
.smartbettingcorner_modal_close {
position: absolute;
top: 10px;
right: 15px;
background: none;
border: none;
color: var(--t-prim);
font-size: 1.5rem;
cursor: pointer;
}
.smartbettingcorner_auth_form {
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 1.5rem;
}
.smartbettingcorner_input {
padding: 0.8rem;
background: rgba(0,0,0,0.5);
border: 1px solid var(--p-color);
color: var(--t-prim);
}
.smartbettingcorner_modal_deny {
margin-top: 1rem;
font-size: 0.8rem;
color: var(--s-color);
}
.smartbettingcorner_toast {
position: fixed;
bottom: 20px;
right: 20px;
background: var(--a-color);
color: var(--bg-color);
padding: 1rem 2rem;
border-radius: 4px;
font-weight: bold;
transform: translateY(100px);
opacity: 0;
transition: all 0.3s ease;
z-index: 3000;
}
.smartbettingcorner_toast.is-visible {
transform: translateY(0);
opacity: 1;
}
.smartbettingcorner_lobby_header {
background: var(--surf-color);
padding: 2rem 0;
border-bottom: 1px solid var(--p-color);
}
.smartbettingcorner_wallet_large {
font-size: 1.5rem;
color: var(--a-color);
margin-top: 1rem;
}
.smartbettingcorner_layout_highlight_rail {
display: flex;
flex-wrap: wrap;
gap: 2rem;
}
.smartbettingcorner_lobby_highlight {
flex: 2;
min-width: 300px;
}
.smartbettingcorner_lobby_rail {
flex: 1;
min-width: 300px;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.smartbettingcorner_responsible_strip {
background: var(--s-color);
color: #fff;
text-align: center;
padding: 1rem 0;
font-size: 0.9rem;
}
.smartbettingcorner_page_header {
background: linear-gradient(135deg, var(--surf-color), var(--bg-color));
padding: 4rem 0 2rem;
text-align: center;
border-bottom: 1px solid var(--p-color);
}
@media (max-width: 768px) {
.smartbettingcorner_nav {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: var(--surf-color);
flex-direction: column;
padding: 1rem;
border-bottom: 2px solid var(--p-color);
}
.smartbettingcorner_nav.is-open {
display: flex;
}
.smartbettingcorner_burger {
display: block;
width: 25px;
height: 3px;
background: var(--p-color);
position: relative;
}
.smartbettingcorner_burger::before, .smartbettingcorner_burger::after {
content: '';
position: absolute;
width: 25px;
height: 3px;
background: var(--p-color);
left: 0;
}
.smartbettingcorner_burger::before { top: -8px; }
.smartbettingcorner_burger::after { top: 8px; }
.smartbettingcorner_nav_toggle {
background: transparent;
border: none;
cursor: pointer;
display: block;
padding: 10px;
}
@media (min-width: 769px) {
.smartbettingcorner_nav_toggle {
display: none;
}
}
.smartbettingcorner_hero_title {
font-size: 2.5rem;
}
.smartbettingcorner_header_actions {
flex-direction: column;
align-items: flex-end;
gap: 0.5rem;
}
}

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

/* social-game-layering-guard-v2 */
[data-home-live-game],
[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;
}

[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"] {
  position: relative !important;
  z-index: 1 !important;
  pointer-events: none !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;
}

[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;
}

[class*="slot_reel"],
[class*="slot-reel"],
[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: min(82%, 120px) !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 92% !important;
  object-fit: contain !important;
}

[class*="slot_reel"],
[class*="slot-reel"],
[data-home-live-game] [data-reel-index] {
  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-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;
}
