:root{
--primary: #4CC9F0;
--secondary: #3A86FF;
--accent: #80FFDB;
--background: #08101A;
--surface: #152231;
--textPrimary: #EDF8FF;
--textSecondary: #A9C0D4;
--font-heading: 'Playfair Display', sans-serif;
--font-body: 'Inter', sans-serif;
}
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
background-color: var(--background);
color: var(--textPrimary);
font-family: var(--font-body);
font-size: 16px;
line-height: 1.6;
overflow-x: hidden;
}
h1, h2, h3, h4{
font-family: var(--font-heading);
font-weight: 700;
margin-bottom: 1rem;
color: var(--primary);
}
a{
color: var(--accent);
text-decoration: none;
transition: opacity 0.2s;
}
a:hover{
opacity: 0.8;
}
.bestfingame_container{
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
}
.bestfingame_header{
position: sticky;
top: 0;
background: rgba(8, 16, 26, 0.85);
backdrop-filter: blur(10px);
z-index: 100;
border-bottom: 1px solid var(--surface);
}
.bestfingame_header_inner{
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 20px;
max-width: 1280px;
margin: 0 auto;
}
.bestfingame_logo a{
font-family: var(--font-heading);
font-size: 1.5rem;
font-weight: 700;
color: var(--primary);
}
.bestfingame_nav{
display: flex;
gap: 20px;
}
.bestfingame_nav a{
color: var(--textPrimary);
font-weight: 500;
}
.bestfingame_nav a.active{
color: var(--accent);
}
.bestfingame_header_right{
display: flex;
align-items: center;
gap: 15px;
}
.bestfingame_badge_18{
background: var(--surface);
border: 1px solid var(--textSecondary);
color: var(--textPrimary);
padding: 4px 8px;
border-radius: 4px;
font-size: 0.8rem;
font-weight: bold;
}
.bestfingame_burger{
display: none;
background: none;
border: none;
cursor: pointer;
flex-direction: column;
gap: 5px;
}
.bestfingame_burger_line{
width: 25px;
height: 3px;
background-color: var(--textPrimary);
}
@media (max-width: 768px){
.bestfingame_nav{
display: none;
position: absolute;
top: 60px;
left: 0;
width: 100%;
background: var(--surface);
flex-direction: column;
padding: 20px;
text-align: center;
border-bottom: 1px solid var(--primary);
}
.bestfingame_nav.is-open{
display: flex;
}
.bestfingame_burger{
display: flex;
}
}
.bestfingame_hero_bg_image{
position: relative;
min-height: 80vh;
display: flex;
align-items: center;
}
.bestfingame_hero_bg{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
z-index: 1;
}
.bestfingame_hero_overlay{
position: relative;
z-index: 2;
width: 100%;
height: 100%;
background: linear-gradient(90deg, var(--background) 0%, rgba(8,16,26,0.6) 100%);
display: flex;
align-items: center;
padding: 40px 20px;
}
.bestfingame_hero_content{
max-width: 600px;
margin-left: auto;
margin-right: auto;
background: rgba(21, 34, 49, 0.85);
padding: 40px;
border: 1px solid var(--primary);
border-radius: 8px;
backdrop-filter: blur(5px);
}
.bestfingame_hero_content h1{
font-size: 2.5rem;
color: var(--primary);
}
.bestfingame_hero_proof_strip{
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0;
font-weight: bold;
color: var(--accent);
}
.bestfingame_cta_btn{
display: inline-block;
background: var(--primary);
color: var(--background);
padding: 15px 30px;
border-radius: 4px;
font-weight: bold;
border: none;
cursor: pointer;
font-size: 1rem;
transition: background 0.3s;
}
.bestfingame_cta_btn:hover{
background: var(--accent);
}
.bestfingame_section{
padding: 60px 0;
}
.bestfingame_blocks_grid{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}
.bestfingame_block_card{
background: var(--surface);
padding: 25px;
border-radius: 8px;
border-top: 3px solid var(--secondary);
}
.bestfingame_split{
display: flex;
flex-wrap: wrap;
gap: 40px;
align-items: center;
}
.bestfingame_split_text, .bestfingame_split_visual{
flex: 1;
min-width: 300px;
}
.bestfingame_split_visual img{
width: 100%;
border-radius: 8px;
border: 1px solid var(--surface);
}
.bestfingame_game_wrapper{
background: var(--surface);
padding: 20px;
border-radius: 8px;
border: 1px solid var(--textSecondary);
margin-bottom: 30px;
display: flex;
flex-direction: column;
align-items: center;
}
.bestfingame_slot_board{
position: relative;
width: 300px;
height: 200px;
margin: 0 auto 20px auto;
overflow: hidden;
}
.bestfingame_slot_frame_img{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
pointer-events: none;
}
.bestfingame_slot_reels{
position: absolute;
top: 10%;
left: 10%;
width: 80%;
height: 80%;
z-index: 2;
display: flex;
justify-content: space-between;
align-items: center;
}
.bestfingame_slot_reel{
width: 30%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0,0,0,0.5);
border-radius: 4px;
}
.bestfingame_slot_reel img{
width: 80%;
height: auto;
}
.bestfingame_wheel_board{
position: relative;
width: 250px;
height: 250px;
margin: 0 auto 20px auto;
}
.bestfingame_wheel_pointer{
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
color: var(--accent);
font-size: 2rem;
z-index: 3;
}
.bestfingame_wheel_img{
width: 100%;
height: 100%;
z-index: 2;
}
.bestfingame_game_ui{
display: flex;
flex-direction: column;
gap: 15px;
width: 100%;
max-width: 300px;
}
.bestfingame_bet_selector select{
padding: 10px;
background: var(--background);
color: var(--textPrimary);
border: 1px solid var(--textSecondary);
border-radius: 4px;
width: 100%;
margin-top: 5px;
}
.bestfingame_spin_btn{
background: var(--secondary);
color: var(--textPrimary);
padding: 12px;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
transition: background 0.2s;
}
.bestfingame_spin_btn:hover{
background: var(--primary);
}
.bestfingame_game_result{
text-align: center;
background: var(--background);
padding: 10px;
border-radius: 4px;
min-height: 44px;
}
.bestfingame_game_history{
margin-top: 15px;
font-size: 0.85rem;
color: var(--textSecondary);
}
.bestfingame_featured_split{
display: flex;
flex-wrap: wrap;
gap: 30px;
}
.bestfingame_game_featured{
flex: 2;
min-width: 320px;
}
.bestfingame_game_sidebar{
flex: 1;
min-width: 300px;
}
@media(max-width: 768px){
.bestfingame_featured_split{
flex-direction: column;
}
}
.bestfingame_faq_item{
margin-bottom: 10px;
}
.bestfingame_faq_btn{
width: 100%;
text-align: left;
padding: 15px;
background: var(--surface);
color: var(--textPrimary);
border: 1px solid var(--textSecondary);
border-radius: 4px;
cursor: pointer;
font-weight: bold;
}
.bestfingame_faq_panel{
display: none;
padding: 15px;
background: var(--background);
border: 1px solid var(--surface);
border-top: none;
}
.bestfingame_faq_panel.is-open{
display: block;
}
.bestfingame_footer{
background: var(--surface);
padding: 40px 0 20px 0;
border-top: 2px solid var(--secondary);
margin-top: 40px;
}
.bestfingame_footer_grid{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-bottom: 30px;
}
.bestfingame_footer_links{
list-style: none;
}
.bestfingame_footer_links li{
margin-bottom: 8px;
}
.bestfingame_footer_partners{
display: flex;
gap: 15px;
margin-top: 15px;
}
.bestfingame_partner_gamcare{
background: #ffffff;
padding: 5px;
border-radius: 4px;
display: inline-block;
}
.bestfingame_partner_gambleaware{
background: #111111;
padding: 5px;
border-radius: 4px;
display: inline-block;
}
.bestfingame_footer_partners img{
max-width: 120px;
height: auto;
display: block;
}
.bestfingame_footer_disclaimer, .bestfingame_footer_copyright{
text-align: center;
font-size: 0.85rem;
color: var(--textSecondary);
margin-top: 20px;
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 20px;
}
.bestfingame_floating_wallet{
position: fixed;
bottom: 20px;
right: 20px;
background: rgba(8, 16, 26, 0.9);
border: 2px solid var(--primary);
padding: 10px 20px;
border-radius: 30px;
z-index: 99;
box-shadow: 0 4px 15px rgba(0,0,0,0.5);
backdrop-filter: blur(5px);
display: flex;
align-items: center;
gap: 10px;
}
.bestfingame_wallet_amount{
font-weight: bold;
color: var(--accent);
font-size: 1.2rem;
}
.bestfingame_age_gate{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(8, 16, 26, 0.95);
z-index: 9999;
display: none;
align-items: center;
justify-content: center;
}
.bestfingame_age_gate.is-active{
display: flex;
}
.bestfingame_age_gate_content{
background: var(--surface);
padding: 40px;
border-radius: 8px;
max-width: 500px;
text-align: center;
border: 1px solid var(--primary);
}
.bestfingame_age_gate_content p{
margin-bottom: 20px;
}
.bestfingame_page_header{
padding: 80px 20px;
text-align: center;
background-size: cover;
background-position: center;
position: relative;
}
.bestfingame_page_header_overlay{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(8, 16, 26, 0.7);
display: flex;
align-items: center;
justify-content: center;
}
.bestfingame_page_header h1{
position: relative;
z-index: 2;
margin: 0;
}
.bestfingame_long_content h2{
margin-top: 30px;
}
.bestfingame_long_content p{
margin-bottom: 15px;
}
.bestfingame_form_card{
background: var(--surface);
padding: 30px;
border-radius: 8px;
}
.bestfingame_form_group{
margin-bottom: 15px;
}
.bestfingame_form_group label{
display: block;
margin-bottom: 5px;
}
.bestfingame_form_group input, .bestfingame_form_group textarea{
width: 100%;
padding: 10px;
background: var(--background);
color: var(--textPrimary);
border: 1px solid var(--textSecondary);
border-radius: 4px;
}
.bestfingame_notification{
position: fixed;
top: 80px;
right: 20px;
background: var(--primary);
color: var(--background);
padding: 15px;
border-radius: 4px;
z-index: 9000;
display: none;
font-weight: bold;
}
/* 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;
}
