@charset "UTF-8";
:root {
  --bg: #ffffff;
  --text: #000000;
  --accent-1: #ccff00;
  --accent-2: #ff0099;
  --accent-3: #0033cc;
  --amethyst: #9333ea;
  --amethyst-dark: #6d5bff;
  --champagne: #f5d48f;
  --border-main: 2px solid #000000;
  --shadow-main: 4px 4px 0px #000000;
  --shadow-hover: 8px 8px 0px #000000;
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
}
body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.forcus_header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: var(--border-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0px 4px 0px #000000;
}
.forcus_header_logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--accent-1);
  border: var(--border-main);
  padding: 0.25rem 1rem;
  box-shadow: var(--shadow-main);
}
.forcus_nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.forcus_nav a {
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.forcus_nav a:hover {
  border-bottom: 2px solid var(--accent-2);
}
.forcus_auth_controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: end;
}
.forcus_wallet {
  background: var(--accent-3);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border: var(--border-main);
  box-shadow: var(--shadow-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.forcus_btn {
  display: inline-block;
  background: var(--accent-1);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: var(--border-main);
  box-shadow: var(--shadow-main);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.forcus_btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hover);
}
.forcus_btn_alt {
  background: var(--accent-2);
  color: #fff;
}
.forcus_age_badge {
  background: var(--text);
  color: var(--accent-1);
  font-family: var(--font-head);
  font-weight: 900;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  display: inline-flex;
  border: var(--border-main);
}
.forcus_hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 70vh;
  border-bottom: var(--border-main);
  background: var(--accent-3);
}
.forcus_hero_content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  border-right: var(--border-main);
  position: relative;
}
.forcus_hero_content::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: var(--accent-1);
  border: var(--border-main);
  border-radius: 50%;
  box-shadow: var(--shadow-main);
}
.forcus_hero_h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--text);
  text-shadow: var(--shadow-main);
  margin-bottom: 2rem;
  background: var(--accent-1);
  display: inline-block;
  padding: 0 1rem;
  border: var(--border-main);
}
.forcus_hero_p {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  max-width: 600px;
  padding: 1rem;
  background: var(--accent-2);
  color: #fff;
  border: var(--border-main);
  box-shadow: var(--shadow-main);
}
.forcus_hero_visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.forcus_framed_media {
  border: 4px solid var(--text);
  box-shadow: 12px 12px 0px var(--text);
  background: var(--bg);
  padding: 1rem;
  max-width: 100%;
}
.forcus_framed_media img {
  border: var(--border-main);
  object-fit: cover;
}
.forcus_ticker_ribbon {
  background: var(--accent-1);
  border-bottom: var(--border-main);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.forcus_ticker_track {
  display: inline-block;
  animation: forcusMarquee 20s linear infinite;
}
@keyframes forcusMarquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.forcus_section {
  padding: 4rem 2rem;
  border-bottom: var(--border-main);
}
.forcus_section_title {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 0px var(--accent-2);
  display: inline-block;
  border-bottom: 4px solid var(--text);
}
.forcus_social_games_zone {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
  max-width: clamp(820px, 72vw, 900px);
  margin-inline: auto;
  padding-inline: clamp(14px, 3vw, 24px);
}
.forcus_game_card {
  border: var(--border-main);
  background: var(--bg);
  box-shadow: var(--shadow-main);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.forcus_game_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: var(--border-main);
  padding-bottom: 1rem;
  flex-wrap: wrap;
  gap: 10px;
}
.forcus_game_title {
  font-size: 1.5rem;
  margin: 0;
  background: var(--accent-3);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border: var(--border-main);
}
.forcus_slot_stage {
  background: #111;
  border: var(--border-main);
  min-height: clamp(240px, 18vw, 320px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.forcus_slot_reel_window {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 30;
}
.forcus_slot_reel {
  background: #000;
  border: 2px solid var(--accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.forcus_slot_symbol {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}
.forcus_slot_payline {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-2);
  transform: translateY(-50%);
  z-index: 50;
  opacity: 0.7;
  pointer-events: none;
}
.forcus_wheel_stage {
  background: #111;
  border: var(--border-main);
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center;
  overflow: hidden;
}
.forcus_wheel_img {
  grid-area: 1/1;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  object-fit: contain;
  transform-origin: center;
  z-index: 30;
}
.forcus_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: 30px solid var(--accent-1);
  z-index: 80;
  transform: translateY(-5px);
  filter: drop-shadow(0px 4px 0px #000);
}
.forcus_game_controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  background: var(--bg);
  padding: 1rem;
  border: var(--border-main);
}
.forcus_bet_select {
  font-family: var(--font-head);
  font-weight: 700;
  padding: 0.5rem;
  border: var(--border-main);
  font-size: 1.1rem;
}
.forcus_game_result_panel {
  background: var(--text);
  color: var(--accent-1);
  font-family: var(--font-head);
  padding: 1rem;
  border: var(--border-main);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 900;
  margin-top: 1rem;
  min-height: 3rem;
}
.forcus_hub_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.forcus_info_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.forcus_info_card {
  border: var(--border-main);
  background: var(--bg);
  padding: 2rem;
  box-shadow: var(--shadow-main);
  position: relative;
}
.forcus_info_card::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: var(--accent-2);
  border: var(--border-main);
}
.forcus_faq_item {
  border: var(--border-main);
  margin-bottom: 1rem;
  background: var(--bg);
  box-shadow: 4px 4px 0px #000;
}
.forcus_faq_q {
  padding: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--accent-1);
  border-bottom: var(--border-main);
}
.forcus_faq_a {
  padding: 1rem;
  display: none;
}
.forcus_faq_item.is-open .forcus_faq_a {
  display: block;
}
.forcus_footer {
  background: var(--text);
  color: var(--bg);
  padding: 4rem 2rem 2rem;
  border-top: 4px solid var(--accent-1);
}
.forcus_footer_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.forcus_footer h4 {
  color: var(--accent-1);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.forcus_footer ul {
  list-style: none;
}
.forcus_footer ul li {
  margin-bottom: 0.5rem;
}
.forcus_footer ul li a {
  color: var(--bg);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.forcus_footer ul li a:hover {
  border-bottom: 1px solid var(--accent-2);
  color: var(--accent-2);
}
.forcus_partner_strip {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  background: #222;
  padding: 1rem;
  border: 2px solid #444;
}
.forcus_partner_strip a {
  display: inline-block;
  background: #fff;
  padding: 0.5rem;
  border: var(--border-main);
}
.forcus_partner_strip img {
  max-width: 120px;
  height: auto;
}
.forcus_footer_legal {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #444;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
}
.forcus_modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.forcus_modal_overlay.is-active {
  display: flex;
}
.forcus_modal_content {
  background: var(--bg);
  border: var(--border-main);
  box-shadow: 12px 12px 0px var(--accent-2);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
}
.forcus_modal_close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-1);
  border: var(--border-main);
  font-family: var(--font-head);
  font-weight: 900;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.forcus_input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: var(--border-main);
  font-family: var(--font-body);
}
@media (max-width: 768px) {
  .forcus_hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .forcus_hero_content {
    padding: 2rem 1rem;
    border-right: none;
    border-bottom: var(--border-main);
  }
  .forcus_hero_h1 {
    font-size: 2.5rem;
  }
  .forcus_nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: var(--border-main);
    padding: 1rem;
  }
  .forcus_nav.is-open {
    display: flex;
  }
  .forcus_burger {
    display: block;
    background: var(--accent-1);
    border: var(--border-main);
    padding: 0.5rem;
    font-family: var(--font-head);
    font-weight: 900;
    cursor: pointer;
  }
}
@media (min-width: 769px) {
  .forcus_burger {
    display: none;
  }
}
.forcus_toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-1);
  color: var(--text);
  border: var(--border-main);
  padding: 1rem;
  font-family: var(--font-head);
  font-weight: 900;
  box-shadow: var(--shadow-main);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}
.forcus_toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}
/* footer-logo-contrast-guard-v2 */
a[href*="begambleaware.org"],
a[href*="gambleaware"] {
  background: #ffffff !important;
  color: #fff !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;
}
