:root {
  --yolb-hdrft: #0f0a00;
  --yolb-body: #1a1000;
  --yolb-card: #241800;
  --yolb-accent: #ff6a00;
  --yolb-accenthv: #e05500;
  --yolb-gold: #ffc200;
  --yolb-text: #f5e6c8;
  --yolb-muted: #a08060;
  --yolb-line: #3d2800;
  --yolb-glow: 0 0 20px rgba(255, 106, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--yolb-body);
  color: var(--yolb-text);
  line-height: 1.65;
  font-size: 1.05rem;
}

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

a {
  color: var(--yolb-gold);
}

a:hover {
  color: var(--yolb-accent);
}

.yolb-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.yolb-hdr {
  position: sticky;
  background: var(--yolb-hdrft);
  border-bottom: 1px solid var(--yolb-line);
  top: 0;
  z-index: 100;
  box-shadow: var(--yolb-glow);
}

.yolb-menutr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.yolb-hdr-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.55rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  position: relative;
}

.yolb-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  border: 1px solid var(--yolb-line);
  border-radius: 10px;
  background: rgba(36, 24, 0, 0.6);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.yolb-burger:hover {
  border-color: rgba(255, 106, 0, 0.5);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.2);
}

.yolb-burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--yolb-gold);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.2s;
}

#yolb-menut:checked + .yolb-hdr-inner .yolb-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#yolb-menut:checked + .yolb-hdr-inner .yolb-burger-line:nth-child(2) {
  opacity: 0;
}

#yolb-menut:checked + .yolb-hdr-inner .yolb-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.yolb-brand {
  display: flex;
  align-items: center;
  justify-self: start;
  text-decoration: none;
  color: var(--yolb-text);
}

.yolb-brand img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 194, 0, 0.4));
}

.yolb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.yolb-hdr-cta {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  align-items: center;
  justify-self: end;
}

@media (max-width: 960px) {
  .yolb-hdr-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .yolb-burger {
    display: flex;
    order: 0;
  }

  .yolb-brand {
    order: 1;
    margin-right: auto;
    justify-self: auto;
  }

  .yolb-brand img {
    width: 96px;
  }

  .yolb-hdr-cta {
    order: 2;
    margin-left: 0;
    flex-shrink: 0;
    gap: 0.45rem;
  }

  .yolb-nav {
    order: 10;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    justify-content: flex-start;
    justify-self: stretch;
    padding: 0 1rem;
    margin: 0;
    background: var(--yolb-hdrft);
    border-bottom: 1px solid var(--yolb-line);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.45);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease, visibility 0.25s;
    z-index: 200;
  }

  #yolb-menut:checked + .yolb-hdr-inner .yolb-nav {
    max-height: min(70vh, 380px);
    opacity: 1;
    visibility: visible;
    padding: 0.75rem 1rem 1rem;
  }

  .yolb-nav a {
    display: block;
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid rgba(61, 40, 0, 0.5);
    font-size: 1rem;
  }

  .yolb-nav a:last-child {
    border-bottom: none;
  }
}

@media (min-width: 961px) {
  .yolb-btn--hdr {
    padding: 0.55rem 1.15rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

.yolb-nav a {
  color: var(--yolb-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.yolb-nav a:hover {
  color: var(--yolb-gold);
}

.yolb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  background: #ff6a00;
  color: #0f0a00 !important;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 4px 18px 4px 18px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: var(--yolb-glow);
}

.yolb-btn:hover {
  background: #e05500;
  color: #0f0a00 !important;
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .yolb-hdr-cta .yolb-btn {
    padding: 0.52rem 0.78rem;
    font-size: 0.82rem;
    line-height: 1.25;
    font-weight: 700;
    border-radius: 4px 14px 4px 14px;
    box-shadow: 0 0 16px rgba(255, 106, 0, 0.28);
    letter-spacing: 0;
  }

  .yolb-hdr-cta .yolb-btn:hover {
    transform: translateY(-1px);
  }
}

.yolb-cta-block {
  margin-top: 1.35rem;
  text-align: center;
}

.yolb-main {
  flex: 1;
}

.yolb-hero {
  position: relative;
  padding: clamp(1.75rem, 4vw, 3rem) 1.5rem;
  overflow: hidden;
}

.yolb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 106, 0, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(255, 194, 0, 0.08), transparent);
  pointer-events: none;
}

.yolb-hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}

.yolb-hero-imglink {
  display: block;
  text-decoration: none;
  border-radius: 22px 14px 22px 14px;
  overflow: hidden;
  box-shadow: var(--yolb-glow);
  line-height: 0;
  transition: box-shadow 0.25s, transform 0.2s;
}

.yolb-hero-imglink:hover {
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.45);
  transform: translateY(-2px);
}

.yolb-hero-imglink:focus-visible {
  outline: 2px solid var(--yolb-gold);
  outline-offset: 4px;
}

.yolb-hero-imglink img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.yolb-hero-copy {
  min-width: 0;
}

@media (max-width: 900px) {
  .yolb-hero-grid {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .yolb-hero-imglink {
    order: -1;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .yolb-hero-cta {
    justify-content: center;
  }
}

.yolb-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.yolb-hero-lead {
  color: var(--yolb-muted);
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
  max-width: 36ch;
}

@media (max-width: 900px) {
  .yolb-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.yolb-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.yolb-section {
  padding: clamp(1.35rem, 3vw, 2.25rem) 1.5rem;
}

.yolb-section-alt {
  background: linear-gradient(180deg, var(--yolb-body) 0%, #151000 50%, var(--yolb-body) 100%);
}

.yolb-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.yolb-sec-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.yolb-sec-sub {
  color: var(--yolb-muted);
  margin: 0 0 1.25rem;
  max-width: 52ch;
}

.yolb-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .yolb-tiles {
    grid-template-columns: 1fr;
  }
}

.yolb-tile {
  background: var(--yolb-card);
  border: 1px solid var(--yolb-line);
  border-radius: 12px 24px 12px 24px;
  padding: 1.5rem 1.35rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.yolb-tile:hover {
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: var(--yolb-glow);
}

.yolb-tile-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.yolb-tile h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--yolb-gold);
}

.yolb-tile p {
  margin: 0;
  color: var(--yolb-muted);
  font-size: 0.95rem;
}

.yolb-steps {
  counter-reset: yolb-step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.yolb-steps li {
  counter-increment: yolb-step;
  background: var(--yolb-card);
  border: 1px solid var(--yolb-line);
  border-radius: 8px 20px 8px 20px;
  padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  position: relative;
}

.yolb-steps li::before {
  content: counter(yolb-step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--yolb-accent);
  color: #0f0a00;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--yolb-glow);
}

.yolb-steps--road {
  position: relative;
  padding-left: 0.25rem;
}

.yolb-steps--road::before {
  content: "";
  position: absolute;
  left: calc(1rem + 1rem - 1px);
  top: 2.25rem;
  bottom: 2.25rem;
  width: 2px;
  background: linear-gradient(180deg, var(--yolb-accent), rgba(255, 194, 0, 0.35), var(--yolb-line));
  border-radius: 2px;
  opacity: 0.85;
}

.yolb-steps--road li {
  padding-left: 3.75rem;
}

.yolb-steps--road li::before {
  z-index: 1;
}

.yolb-steps p {
  margin: 0;
  color: var(--yolb-muted);
}

.yolb-play-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .yolb-play-wrap {
    grid-template-columns: 1fr;
  }
}

.yolb-panel {
  background: var(--yolb-card);
  border: 1px solid var(--yolb-line);
  border-radius: 20px 8px 20px 8px;
  padding: 1.5rem 1.4rem 1.6rem;
  position: relative;
}

.yolb-panel--how {
  box-shadow: inset 0 0 0 1px rgba(255, 106, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.35);
}

.yolb-panel-head {
  margin-bottom: 1.1rem;
}

.yolb-panel-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yolb-accent);
  margin-bottom: 0.35rem;
}

.yolb-panel-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  color: var(--yolb-text);
  letter-spacing: -0.02em;
}

.yolb-panel-lead {
  margin: 0;
  color: var(--yolb-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.yolb-panel--how .yolb-panel-lead {
  margin-bottom: 1rem;
}

.yolb-panel--how .yolb-steps {
  margin-bottom: 1.15rem;
}

.yolb-btn--wide {
  width: 100%;
  max-width: 100%;
}

.yolb-panel--demo {
  overflow: hidden;
  border: 1px solid rgba(255, 106, 0, 0.35);
  background: linear-gradient(145deg, #1e1408 0%, #241800 45%, #1a1000 100%);
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.15), inset 0 1px 0 rgba(255, 194, 0, 0.12);
}

.yolb-demo-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 106, 0, 0.22), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255, 194, 0, 0.12), transparent 40%);
  pointer-events: none;
}

.yolb-demo-inner {
  position: relative;
  z-index: 1;
}

.yolb-demo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.yolb-demo-chip {
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  background: rgba(15, 10, 0, 0.65);
  border: 1px solid var(--yolb-line);
  border-radius: 999px;
  color: var(--yolb-gold);
}

.yolb-panel--demo .yolb-panel-title {
  color: var(--yolb-gold);
  text-shadow: 0 0 24px rgba(255, 106, 0, 0.25);
}

.yolb-panel--demo .yolb-panel-lead {
  margin-bottom: 0.85rem;
}

.yolb-demo-note {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px 14px 10px 14px;
  border-left: 3px solid var(--yolb-gold);
  color: var(--yolb-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.yolb-demo-cta-row {
  display: flex;
  justify-content: stretch;
}

.yolb-tactics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .yolb-tactics-grid {
    grid-template-columns: 1fr;
  }
}

.yolb-tactic {
  background: var(--yolb-body);
  border-left: 4px solid var(--yolb-accent);
  border-radius: 0 16px 0 16px;
  padding: 1.25rem 1.35rem;
}

.yolb-tactic h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--yolb-text);
}

.yolb-tactic p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--yolb-muted);
}

.yolb-casino-head {
  text-align: center;
  margin-bottom: 1.35rem;
}

.yolb-casino-head .yolb-sec-sub {
  margin-left: auto;
  margin-right: auto;
}

.yolb-casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .yolb-casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .yolb-casino-grid {
    grid-template-columns: 1fr;
  }
}

.yolb-casino-card {
  background: #241800;
  border: 1px solid #3d2800;
  border-radius: 18px 6px 18px 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.yolb-casino-card:hover {
  box-shadow: var(--yolb-glow);
  transform: translateY(-2px);
}

.yolb-casino-card img {
  max-height: 48px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.yolb-casino-card p {
  margin: 0 0 1.25rem;
  flex: 1;
  color: var(--yolb-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.yolb-casino-card .yolb-btn {
  width: 100%;
  max-width: 220px;
}

.yolb-faq-head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.yolb-faq-head .yolb-sec-sub {
  margin-left: auto;
  margin-right: auto;
}

.yolb-faq {
  max-width: 720px;
  margin: 0 auto;
}

.yolb-faq-item {
  background: var(--yolb-card);
  border: 1px solid var(--yolb-line);
  border-radius: 10px 22px 10px 22px;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.yolb-faq-item summary {
  padding: 0.95rem 2.75rem 0.95rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--yolb-gold);
  list-style: none;
  position: relative;
}

.yolb-faq-item summary::-webkit-details-marker {
  display: none;
}

.yolb-faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  margin-top: -4px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid var(--yolb-gold);
  transition: transform 0.25s ease;
  filter: drop-shadow(0 0 6px rgba(255, 106, 0, 0.4));
}

.yolb-faq-item[open] summary::after {
  transform: rotate(180deg);
  margin-top: -5px;
}

.yolb-faq-item[open] summary {
  border-bottom: 1px solid var(--yolb-line);
}

.yolb-faq-item p {
  margin: 0;
  padding: 1rem 1.25rem 1.15rem;
  color: var(--yolb-muted);
  font-size: 0.95rem;
}

.yolb-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .yolb-reviews {
    grid-template-columns: 1fr;
  }
}

.yolb-review {
  background: var(--yolb-card);
  border: 1px solid var(--yolb-line);
  border-radius: 16px 8px 16px 8px;
  padding: 1.35rem;
}

.yolb-review-stars {
  color: var(--yolb-gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.yolb-review p {
  margin: 0;
  color: var(--yolb-muted);
  font-size: 0.92rem;
}

.yolb-review cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--yolb-text);
}

.yolb-ft {
  background: var(--yolb-hdrft);
  margin-top: auto;
  border-top: 1px solid var(--yolb-line);
  box-shadow: 0 -12px 40px rgba(255, 106, 0, 0.08);
}

.yolb-ft-topline {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--yolb-accent), var(--yolb-gold), var(--yolb-accent), transparent);
  opacity: 0.85;
}

.yolb-ft-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) minmax(0, 2fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .yolb-ft-inner {
    grid-template-columns: 1fr;
  }
}

.yolb-ft-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.yolb-ft-logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
  border-radius: 12px;
  border: 1px solid var(--yolb-line);
  box-shadow: var(--yolb-glow);
}

.yolb-ft-logo img {
  width: 56px;
  height: auto;
  border-radius: 11px;
}

.yolb-ft-tagline {
  margin: 0 0 0.5rem;
  color: var(--yolb-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.yolb-ft-lic {
  margin: 0;
  color: var(--yolb-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.yolb-ft-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .yolb-ft-cols {
    grid-template-columns: 1fr;
  }
}

.yolb-ft-heading {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yolb-gold);
}

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

.yolb-ft-list li {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: var(--yolb-muted);
}

.yolb-ft-list a {
  color: var(--yolb-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.yolb-ft-list a:hover {
  color: var(--yolb-accent);
}

.yolb-ft-bar {
  background: #0a0600;
  border-top: 1px solid var(--yolb-line);
}

.yolb-ft-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  justify-content: space-between;
}

.yolb-ft-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: #0f0a00;
  background: linear-gradient(145deg, var(--yolb-gold), #c99400);
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.35);
}

.yolb-ft-disclaimer {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: var(--yolb-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.yolb-ft-copy {
  margin: 0;
  color: var(--yolb-muted);
  font-size: 0.82rem;
  opacity: 0.9;
}

.yolb-skip {
  position: absolute;
  left: -9999px;
  z-index: 999;
}

.yolb-skip:focus {
  left: 1rem;
  top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--yolb-accent);
  color: #0f0a00;
}
