:root {
--violoftyn_primary: #1DBA84;
--violoftyn_secondary: #0E7C66;
--violoftyn_accent: #F3C85A;
--violoftyn_background: #081311;
--violoftyn_surface: #12211D;
--violoftyn_text_primary: #EAF7F2;
--violoftyn_text_secondary: #A9C5BB;
--violoftyn_font_heading: 'Playfair Display', serif;
--violoftyn_font_body: 'Lato', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body.violoftyn_body {
font-family: var(--violoftyn_font_body);
background-color: var(--violoftyn_background);
color: var(--violoftyn_text_primary);
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--violoftyn_font_heading);
font-weight: 700;
color: var(--violoftyn_text_primary);
}
a {
color: var(--violoftyn_accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.violoftyn_header {
background-color: var(--violoftyn_surface);
border-bottom: 1px solid var(--violoftyn_secondary);
position: sticky;
top: 0;
z-index: 1000;
}
.violoftyn_nav_inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 2rem;
max-width: 1280px;
margin: 0 auto;
}
.violoftyn_logo {
font-family: var(--violoftyn_font_heading);
font-size: 1.5rem;
color: var(--violoftyn_primary);
font-weight: 700;
}
.violoftyn_nav_links {
display: flex;
gap: 1.5rem;
align-items: center;
}
.violoftyn_burger {
display: none;
background: none;
border: none;
cursor: pointer;
flex-direction: column;
gap: 4px;
}
.violoftyn_burger_line {
width: 24px;
height: 2px;
background-color: var(--violoftyn_text_primary);
}
.violoftyn_btn {
background-color: var(--violoftyn_primary);
color: var(--violoftyn_background);
border: none;
padding: 0.75rem 1.5rem;
font-family: var(--violoftyn_font_body);
font-weight: 700;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.2s;
min-height: 44px;
}
.violoftyn_btn:hover {
background-color: var(--violoftyn_accent);
}
.violoftyn_main {
flex: 1;
}
.violoftyn_age_strip {
background-color: var(--violoftyn_secondary);
text-align: center;
padding: 0.5rem;
font-size: 0.875rem;
font-weight: 700;
letter-spacing: 0.05em;
}
.violoftyn_hero_split {
display: grid;
grid-template-columns: 1fr 1fr;
background-color: var(--violoftyn_surface);
min-height: 60vh;
}
.violoftyn_hero_content {
padding: 4rem 2rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 1.5rem;
}
.violoftyn_hero_title {
font-size: 3rem;
line-height: 1.1;
}
.violoftyn_hero_subtitle {
font-size: 1.25rem;
color: var(--violoftyn_text_secondary);
}
.violoftyn_hero_visual {
position: relative;
width: 100%;
height: 100%;
}
.violoftyn_hero_img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.violoftyn_ticker_row {
background-color: var(--violoftyn_primary);
color: var(--violoftyn_background);
padding: 0.75rem 0;
overflow: hidden;
font-weight: 700;
}
.violoftyn_ticker_track {
display: flex;
white-space: nowrap;
animation: ticker 20s linear infinite;
gap: 2rem;
}
@keyframes ticker {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
.violoftyn_live_games_zone {
max-width: clamp(820px, 72vw, 900px);
margin: 4rem auto;
padding: 0 clamp(14px, 3vw, 24px);
display: grid;
grid-template-columns: 1fr;
gap: clamp(20px, 3vw, 28px);
}
.violoftyn_section_title {
font-size: 2rem;
text-align: center;
margin-bottom: 0.5rem;
}
.violoftyn_section_desc {
text-align: center;
color: var(--violoftyn_text_secondary);
margin-bottom: 2rem;
}
[data-game-card] {
background-color: var(--violoftyn_surface);
border: 1px solid var(--violoftyn_secondary);
border-radius: 8px;
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 1rem;
max-width: 100%;
min-width: 0;
}
.violoftyn_game_type {
display: block;
text-align: center;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--violoftyn_primary);
margin-bottom: 0.25rem;
}
.violoftyn_game_title {
text-align: center;
color: var(--violoftyn_accent);
}
.violoftyn_game_desc {
text-align: center;
color: var(--violoftyn_text_secondary);
font-size: 0.9rem;
line-height: 1.5;
margin-bottom: 0.5rem;
}
[data-wheel-stage] {
aspect-ratio: 1/1;
max-width: 320px;
margin: 0 auto;
position: relative;
display: grid;
grid-template-areas: "board";
place-items: center;
}
[data-wheel-img] {
grid-area: board;
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 50%;
transform-origin: center;
display: block;
}
[data-wheel-pointer] {
grid-area: board;
place-self: start center;
width: 0;
height: 0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 25px solid var(--violoftyn_accent);
z-index: 80;
transform: translateY(-10px);
}
[data-slot-stage] {
min-height: clamp(240px, 18vw, 320px);
background-color: #000;
border: 2px solid var(--violoftyn_secondary);
border-radius: 8px;
position: relative;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
[data-slot-reel-window] {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
width: 100%;
height: 100%;
padding: 10px;
overflow: hidden;
z-index: 30;
}
[data-slot-reel] {
background-color: rgba(255,255,255,0.05);
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
min-width: 0;
}
[data-slot-symbol] {
width: 80%;
height: auto;
max-height: 100%;
object-fit: contain;
display: block;
}
.violoftyn_slot_payline {
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 4px;
background-color: rgba(243, 200, 90, 0.5);
z-index: 50;
transform: translateY(-50%);
}
.violoftyn_game_controls {
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
margin-top: 1rem;
z-index: 80;
}
.violoftyn_bet_selector select {
padding: 0.5rem;
background-color: var(--violoftyn_background);
color: var(--violoftyn_text_primary);
border: 1px solid var(--violoftyn_secondary);
}
.violoftyn_result_panel {
font-weight: 700;
color: var(--violoftyn_accent);
min-height: 24px;
}
.violoftyn_history_panel {
font-size: 0.85rem;
color: var(--violoftyn_text_secondary);
}
.violoftyn_content_block {
padding: 4rem 2rem;
}
.violoftyn_block_inner {
max-width: 1000px;
margin: 0 auto;
}
.violoftyn_block_inner h2 {
margin-bottom: 1.5rem;
color: var(--violoftyn_accent);
}
.violoftyn_map_grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.violoftyn_map_item img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 4px;
margin-bottom: 1rem;
}
.violoftyn_myth_list {
list-style: none;
display: flex;
flex-direction: column;
gap: 1rem;
}
.violoftyn_myth_list li {
background-color: var(--violoftyn_surface);
padding: 1.5rem;
border-left: 4px solid var(--violoftyn_primary);
}
.violoftyn_footer {
background-color: var(--violoftyn_background);
border-top: 1px solid var(--violoftyn_surface);
padding: 4rem 2rem 2rem;
margin-top: auto;
}
.violoftyn_footer_inner {
max-width: 1280px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 3rem;
}
.violoftyn_footer_top {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.violoftyn_footer_links a {
display: block;
margin-bottom: 0.5rem;
color: var(--violoftyn_text_secondary);
}
.violoftyn_footer_middle {
text-align: center;
border-top: 1px solid var(--violoftyn_surface);
border-bottom: 1px solid var(--violoftyn_surface);
padding: 2rem 0;
}
.violoftyn_footer_partners {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 1rem;
flex-wrap: wrap;
}
.violoftyn_partner_logo {
display: inline-block;
padding: 0.5rem;
border-radius: 4px;
}
.violoftyn_partner_dark {
background-color: #222;
}
.violoftyn_partner_light {
background-color: #FFF;
}
.violoftyn_partner_logo img {
height: 40px;
width: auto;
display: block;
}
.violoftyn_footer_bottom {
text-align: center;
font-size: 0.85rem;
color: var(--violoftyn_text_secondary);
display: flex;
flex-direction: column;
gap: 1rem;
}
.violoftyn_modal {
display: none;
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background-color: rgba(0,0,0,0.8);
z-index: 9999;
align-items: center;
justify-content: center;
}
.violoftyn_modal.is-open {
display: flex;
}
.violoftyn_modal_content {
background-color: var(--violoftyn_surface);
padding: 3rem;
border-radius: 8px;
max-width: 400px;
width: 90%;
position: relative;
text-align: center;
}
.violoftyn_modal_close {
position: absolute;
top: 1rem;
right: 1rem;
background: none;
border: none;
color: var(--violoftyn_text_primary);
font-size: 1.5rem;
cursor: pointer;
}
.violoftyn_notification {
position: fixed;
bottom: 20px;
right: 20px;
background-color: var(--violoftyn_surface);
border: 1px solid var(--violoftyn_primary);
color: var(--violoftyn_text_primary);
padding: 1rem;
border-radius: 4px;
z-index: 10000;
transform: translateY(150%);
transition: transform 0.3s;
}
.violoftyn_notification.is-visible {
transform: translateY(0);
}
@media (max-width: 768px) {
.violoftyn_nav_links {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: var(--violoftyn_surface);
flex-direction: column;
padding: 1rem;
border-bottom: 1px solid var(--violoftyn_secondary);
}
.violoftyn_nav_links.is-open {
display: flex;
}
.violoftyn_burger {
display: flex;
}
.violoftyn_hero_split {
grid-template-columns: 1fr;
}
.violoftyn_hero_content {
padding: 2rem 1rem;
}
}
.violoftyn_lobby_layout {
padding: 2rem;
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: 300px 1fr;
gap: 2rem;
}
.violoftyn_wallet_panel {
background-color: var(--violoftyn_surface);
padding: 1.5rem;
border-radius: 8px;
border: 1px solid var(--violoftyn_secondary);
height: fit-content;
}
.violoftyn_balance_large {
font-size: 2.5rem;
color: var(--violoftyn_accent);
font-family: var(--violoftyn_font_heading);
margin: 1rem 0;
}
.violoftyn_legal_drawer {
display: none;
margin-top: 1rem;
font-size: 0.85rem;
color: var(--violoftyn_text_secondary);
}
.violoftyn_legal_drawer.is-open {
display: block;
}
.violoftyn_lobby_grid {
display: grid;
grid-template-columns: 1fr;
gap: 2rem;
}
.violoftyn_editorial {
padding: 4rem 2rem;
max-width: 800px;
margin: 0 auto;
}
.violoftyn_page_title {
color: var(--violoftyn_accent);
margin-bottom: 2rem;
}
.violoftyn_text_section h2 {
margin: 2rem 0 1rem;
}
.violoftyn_contact_form {
margin-top: 2rem;
display: flex;
flex-direction: column;
gap: 1.25rem;
}
.violoftyn_form_group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.violoftyn_form_group label {
font-weight: 700;
color: var(--violoftyn_text_primary);
}
.violoftyn_required {
color: var(--violoftyn_accent);
}
.violoftyn_contact_form input,
.violoftyn_contact_form textarea {
background-color: var(--violoftyn_background);
border: 1px solid var(--violoftyn_secondary);
color: var(--violoftyn_text_primary);
padding: 0.75rem 1rem;
border-radius: 4px;
font-family: var(--violoftyn_font_body);
font-size: 1rem;
width: 100%;
transition: border-color 0.2s;
}
.violoftyn_contact_form input:focus,
.violoftyn_contact_form textarea:focus {
outline: none;
border-color: var(--violoftyn_primary);
}
.violoftyn_contact_form input::placeholder,
.violoftyn_contact_form textarea::placeholder {
color: var(--violoftyn_text_secondary);
}
.violoftyn_contact_form textarea {
resize: vertical;
min-height: 140px;
}
.violoftyn_form_success {
margin-top: 2rem;
padding: 1.5rem;
background-color: var(--violoftyn_surface);
border: 1px solid var(--violoftyn_primary);
border-radius: 4px;
text-align: center;
}
.violoftyn_form_success p {
color: var(--violoftyn_primary);
font-weight: 700;
font-size: 1.1rem;
margin: 0;
}
.violoftyn_faq_section {
padding: 0 2rem 4rem;
max-width: 800px;
margin: 0 auto;
}
.violoftyn_faq_section h2 {
color: var(--violoftyn_accent);
margin-bottom: 0.75rem;
}
.violoftyn_faq_intro {
color: var(--violoftyn_text_secondary);
margin-bottom: 1.5rem;
}
.violoftyn_faq_block {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.violoftyn_faq_item {
background-color: var(--violoftyn_surface);
border: 1px solid var(--violoftyn_secondary);
border-radius: 4px;
overflow: hidden;
}
.violoftyn_faq_trigger {
width: 100%;
text-align: left;
background: none;
border: none;
color: var(--violoftyn_text_primary);
font-family: var(--violoftyn_font_heading);
font-size: 1rem;
font-weight: 700;
padding: 1rem 1.25rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
transition: color 0.2s;
}
.violoftyn_faq_trigger::after {
content: '+';
color: var(--violoftyn_primary);
font-size: 1.25rem;
font-weight: 700;
flex-shrink: 0;
transition: transform 0.2s;
}
.violoftyn_faq_item.is-open .violoftyn_faq_trigger::after {
content: '−';
}
.violoftyn_faq_trigger:hover {
color: var(--violoftyn_primary);
}
.violoftyn_faq_content {
display: none;
padding: 0 1.25rem 1.25rem;
}
.violoftyn_faq_item.is-open .violoftyn_faq_content {
display: block;
}
.violoftyn_faq_content p {
color: var(--violoftyn_text_secondary);
margin: 0;
}
@media (max-width: 768px) {
.violoftyn_lobby_layout {
grid-template-columns: 1fr;
}
}
/* 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;
}
