@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --olympus-bg-deep: #0a0812;
  --olympus-bg-mid: #100e1e;
  --olympus-bg-card: #16132a;
  --olympus-bg-glass: rgba(22, 19, 42, 0.75);
  --olympus-gold: #f0c040;
  --olympus-gold-light: #ffd966;
  --olympus-gold-dark: #c9922a;
  --olympus-gold-glow: rgba(240, 192, 64, 0.35);
  --olympus-purple: #6b3fa0;
  --olympus-purple-light: #9b6fd4;
  --olympus-purple-glow: rgba(107, 63, 160, 0.4);
  --olympus-blue: #1a3a6e;
  --olympus-blue-light: #4a7fd4;
  --olympus-lightning: #a0c8ff;
  --olympus-marble: #e8e0d0;
  --olympus-marble-dim: #b8b0a0;
  --olympus-white: #f5f0e8;
  --olympus-text: #d4ccc0;
  --olympus-text-dim: #8a8278;
  --olympus-success: #2ecc71;
  --olympus-danger: #e74c3c;
  --olympus-border: rgba(240, 192, 64, 0.2);
  --olympus-border-bright: rgba(240, 192, 64, 0.5);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-gold: 0 0 24px rgba(240, 192, 64, 0.3), 0 4px 16px rgba(0,0,0,0.5);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(107, 63, 160, 0.4);
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --transition-fast: 0.18s ease;
  --transition-mid: 0.32s ease;
  --transition-slow: 0.55s ease;
  --max-width: 1100px;
  --section-pad: clamp(3rem, 6vw, 6rem) 1.25rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--olympus-bg-deep);
  color: var(--olympus-text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--olympus-gold); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--olympus-gold-light); }
a:focus-visible { outline: 2px solid var(--olympus-gold); outline-offset: 3px; border-radius: 4px; }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }
strong { color: var(--olympus-gold-light); font-weight: 600; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--olympus-bg-deep); }
::-webkit-scrollbar-thumb { background: var(--olympus-purple); border-radius: 4px; }

/* ===== CONTAINER ===== */
.site-eYez2o-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== HEADER ===== */
.site-eYez2o-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 8, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--olympus-border);
  transition: box-shadow var(--transition-mid);
}
.site-eYez2o-header--scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.7); }
.site-eYez2o-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.site-eYez2o-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--olympus-gold);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 0 12px var(--olympus-gold-glow);
}
.site-eYez2o-logo__icon { font-size: 1.4rem; }
.site-eYez2o-nav { display: none; }
.site-eYez2o-nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
.site-eYez2o-nav__list li { margin: 0; }
.site-eYez2o-nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--olympus-marble-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}
.site-eYez2o-nav__link:hover {
  color: var(--olympus-gold);
  border-bottom-color: var(--olympus-gold);
}
.site-eYez2o-header__cta {
  display: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--olympus-gold-dark), var(--olympus-gold));
  color: #0a0812;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.site-eYez2o-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.site-eYez2o-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.site-eYez2o-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--olympus-gold);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.site-eYez2o-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-eYez2o-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-eYez2o-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-eYez2o-mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(10, 8, 18, 0.98);
  border-top: 1px solid var(--olympus-border);
  padding: 1rem 1.25rem 1.5rem;
}
.site-eYez2o-mobile-nav--open { display: flex; }
.site-eYez2o-mobile-nav__list { list-style: none; padding: 0; }
.site-eYez2o-mobile-nav__list li { margin: 0; border-bottom: 1px solid var(--olympus-border); }
.site-eYez2o-mobile-nav__link {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--olympus-marble-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-eYez2o-mobile-nav__link:hover { color: var(--olympus-gold); }
.site-eYez2o-mobile-nav__cta {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--olympus-gold-dark), var(--olympus-gold));
  color: #0a0812;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

/* ===== HERO ===== */
.site-eYez2o-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem 1.25rem 3rem;
}
.site-eYez2o-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(107,63,160,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(26,58,110,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(240,192,64,0.12) 0%, transparent 50%),
    var(--olympus-bg-deep);
  z-index: 0;
}
.site-eYez2o-hero__lightning {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.site-eYez2o-hero__lightning::before,
.site-eYez2o-hero__lightning::after {
  content: '';
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--olympus-lightning), transparent);
  opacity: 0;
  animation: site-eYez2o-lightning-flash 4s infinite;
}
.site-eYez2o-hero__lightning::before {
  height: 200px;
  top: 10%;
  left: 20%;
  transform: rotate(15deg);
  animation-delay: 0s;
}
.site-eYez2o-hero__lightning::after {
  height: 150px;
  top: 15%;
  right: 25%;
  transform: rotate(-10deg);
  animation-delay: 2.1s;
}
@keyframes site-eYez2o-lightning-flash {
  0%, 90%, 100% { opacity: 0; }
  92%, 96% { opacity: 0.7; }
  94% { opacity: 0.2; }
}
.site-eYez2o-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.site-eYez2o-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240,192,64,0.12);
  border: 1px solid var(--olympus-border-bright);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olympus-gold);
  margin-bottom: 1.5rem;
}
.site-eYez2o-hero__badge__dot {
  width: 6px; height: 6px;
  background: var(--olympus-gold);
  border-radius: 50%;
  animation: site-eYez2o-pulse 2s infinite;
}
@keyframes site-eYez2o-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.site-eYez2o-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--olympus-white);
  text-shadow: 0 0 40px rgba(240,192,64,0.4), 0 2px 8px rgba(0,0,0,0.8);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.site-eYez2o-hero h1 span {
  background: linear-gradient(135deg, var(--olympus-gold-light), var(--olympus-gold), var(--olympus-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-eYez2o-hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--olympus-marble-dim);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.site-eYez2o-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.site-eYez2o-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--olympus-gold-dark) 0%, var(--olympus-gold) 50%, var(--olympus-gold-light) 100%);
  color: #0a0812;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  position: relative;
  overflow: hidden;
}
.site-eYez2o-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.site-eYez2o-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(240,192,64,0.5), 0 8px 24px rgba(0,0,0,0.5); filter: brightness(1.08); }
.site-eYez2o-btn-primary:hover::before { opacity: 1; }
.site-eYez2o-btn-primary:focus-visible { outline: 2px solid var(--olympus-gold-light); outline-offset: 3px; }
.site-eYez2o-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  color: var(--olympus-gold);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--olympus-border-bright);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.site-eYez2o-btn-secondary:hover {
  background: rgba(240,192,64,0.1);
  border-color: var(--olympus-gold);
  color: var(--olympus-gold-light);
}
.site-eYez2o-hero__stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.site-eYez2o-hero__stat {
  text-align: center;
}
.site-eYez2o-hero__stat__value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--olympus-gold);
  display: block;
  text-shadow: 0 0 16px var(--olympus-gold-glow);
}
.site-eYez2o-hero__stat__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olympus-text-dim);
}
.site-eYez2o-hero__image-wrap {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
  cursor: pointer;
}
.site-eYez2o-hero__image {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--olympus-border);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.site-eYez2o-hero__image-wrap:hover .site-eYez2o-hero__image {
  transform: scale(1.02);
  box-shadow: 0 0 60px rgba(107,63,160,0.6), var(--shadow-card);
}

/* ===== SECTION BASE ===== */
.site-eYez2o-section {
  padding: var(--section-pad);
  position: relative;
}
.site-eYez2o-section--alt { background: var(--olympus-bg-mid); }
.site-eYez2o-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.site-eYez2o-section__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olympus-gold);
  margin-bottom: 0.75rem;
}
.site-eYez2o-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--olympus-white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.site-eYez2o-section__desc {
  font-size: 1rem;
  color: var(--olympus-text-dim);
  max-width: 620px;
  margin: 0 auto;
}
.site-eYez2o-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--olympus-gold-dark), var(--olympus-gold));
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ===== OVERVIEW ===== */
.site-eYez2o-overview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.site-eYez2o-overview__card {
  background: var(--olympus-bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--olympus-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: border-color var(--transition-mid), box-shadow var(--transition-mid), transform var(--transition-mid);
}
.site-eYez2o-overview__card:hover {
  border-color: var(--olympus-border-bright);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.site-eYez2o-overview__card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.site-eYez2o-overview__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--olympus-gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.site-eYez2o-overview__card p {
  font-size: 0.9rem;
  color: var(--olympus-text-dim);
  line-height: 1.6;
}
.site-eYez2o-overview__intro {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--olympus-text);
}
.site-eYez2o-overview__intro p { margin-bottom: 1rem; }

/* ===== COMO JOGAR ===== */
.site-eYez2o-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.site-eYez2o-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--olympus-bg-glass);
  border: 1px solid var(--olympus-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color var(--transition-mid), transform var(--transition-mid);
}
.site-eYez2o-step:hover { border-color: var(--olympus-border-bright); transform: translateX(4px); }
.site-eYez2o-step__num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--olympus-gold-dark), var(--olympus-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #0a0812;
  box-shadow: 0 0 16px var(--olympus-gold-glow);
}
.site-eYez2o-step__body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--olympus-white);
  margin-bottom: 0.4rem;
}
.site-eYez2o-step__body p {
  font-size: 0.9rem;
  color: var(--olympus-text-dim);
  line-height: 1.6;
}

/* ===== MECHANICS ===== */
.site-eYez2o-mechanics__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.site-eYez2o-mechanics__text h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--olympus-gold);
  margin: 1.5rem 0 0.6rem;
}
.site-eYez2o-mechanics__text h3:first-child { margin-top: 0; }
.site-eYez2o-mechanics__text p {
  font-size: 0.95rem;
  color: var(--olympus-text);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.site-eYez2o-mechanics__text ul {
  font-size: 0.9rem;
  color: var(--olympus-text-dim);
  margin-bottom: 1rem;
}
.site-eYez2o-mechanics__text ul li::marker { color: var(--olympus-gold); }
.site-eYez2o-info-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.site-eYez2o-info-table {
  min-width: 600px;
  width: 100%;
  max-width: 1024px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.site-eYez2o-info-table th {
  background: rgba(240,192,64,0.12);
  color: var(--olympus-gold);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--olympus-border-bright);
}
.site-eYez2o-info-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--olympus-border);
  color: var(--olympus-text);
  vertical-align: top;
}
.site-eYez2o-info-table tr:hover td { background: rgba(240,192,64,0.04); }
.site-eYez2o-info-table td:first-child { color: var(--olympus-gold-light); font-weight: 600; }

/* ===== MULTIPLIER ===== */
.site-eYez2o-multiplier__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.site-eYez2o-multiplier__card {
  background: var(--olympus-bg-glass);
  border: 1px solid var(--olympus-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: border-color var(--transition-mid), box-shadow var(--transition-mid);
}
.site-eYez2o-multiplier__card:hover {
  border-color: var(--olympus-gold);
  box-shadow: 0 0 24px var(--olympus-gold-glow);
}
.site-eYez2o-multiplier__card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--olympus-gold);
  display: block;
  text-shadow: 0 0 20px var(--olympus-gold-glow);
}
.site-eYez2o-multiplier__card__label {
  font-size: 0.78rem;
  color: var(--olympus-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-eYez2o-multiplier__text p {
  font-size: 0.95rem;
  color: var(--olympus-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ===== MAX WIN ===== */
.site-eYez2o-maxwin__highlight {
  background: linear-gradient(135deg, rgba(240,192,64,0.08), rgba(107,63,160,0.12));
  border: 1px solid var(--olympus-border-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.site-eYez2o-maxwin__highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(240,192,64,0.15), transparent 70%);
  pointer-events: none;
}
.site-eYez2o-maxwin__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--olympus-gold);
  display: block;
  text-shadow: 0 0 40px var(--olympus-gold-glow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.site-eYez2o-maxwin__label {
  font-size: 1rem;
  color: var(--olympus-marble-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-eYez2o-maxwin__text p {
  font-size: 0.95rem;
  color: var(--olympus-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ===== DEMO ===== */
.site-eYez2o-demo__card {
  background: linear-gradient(135deg, rgba(107,63,160,0.2), rgba(26,58,110,0.2));
  border: 1px solid rgba(107,63,160,0.4);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.site-eYez2o-demo__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}
.site-eYez2o-demo__card__img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  border: 1px solid var(--olympus-border);
}
.site-eYez2o-demo__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--olympus-white);
  margin-bottom: 0.75rem;
}
.site-eYez2o-demo__card p {
  font-size: 0.9rem;
  color: var(--olympus-text-dim);
  margin-bottom: 1.5rem;
}
.site-eYez2o-demo__benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.site-eYez2o-demo__benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--olympus-bg-glass);
  border: 1px solid var(--olympus-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.site-eYez2o-demo__benefit__icon { font-size: 1.5rem; flex-shrink: 0; }
.site-eYez2o-demo__benefit h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--olympus-gold);
  margin-bottom: 0.3rem;
}
.site-eYez2o-demo__benefit p { font-size: 0.85rem; color: var(--olympus-text-dim); line-height: 1.5; }

/* ===== FEATURES & SYMBOLS ===== */
.site-eYez2o-symbols__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.site-eYez2o-symbol__card {
  background: var(--olympus-bg-glass);
  border: 1px solid var(--olympus-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: border-color var(--transition-mid), transform var(--transition-mid);
}
.site-eYez2o-symbol__card:hover {
  border-color: var(--olympus-border-bright);
  transform: translateY(-2px);
}
.site-eYez2o-symbol__card__emoji { font-size: 2.2rem; display: block; margin-bottom: 0.5rem; }
.site-eYez2o-symbol__card h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--olympus-gold);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}
.site-eYez2o-symbol__card p { font-size: 0.78rem; color: var(--olympus-text-dim); line-height: 1.5; }
.site-eYez2o-features__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.site-eYez2o-feature__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--olympus-bg-glass);
  border: 1px solid var(--olympus-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-mid);
}
.site-eYez2o-feature__item:hover { border-color: var(--olympus-border-bright); }
.site-eYez2o-feature__item__icon { font-size: 1.5rem; flex-shrink: 0; }
.site-eYez2o-feature__item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--olympus-white);
  margin-bottom: 0.3rem;
}
.site-eYez2o-feature__item p { font-size: 0.88rem; color: var(--olympus-text-dim); line-height: 1.55; }

/* ===== MOBILE & ONLINE ===== */
.site-eYez2o-mobile__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.site-eYez2o-mobile__text h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--olympus-gold);
  margin: 1.25rem 0 0.5rem;
}
.site-eYez2o-mobile__text h3:first-child { margin-top: 0; }
.site-eYez2o-mobile__text p {
  font-size: 0.95rem;
  color: var(--olympus-text);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.site-eYez2o-mobile__text ul {
  font-size: 0.9rem;
  color: var(--olympus-text-dim);
  margin-bottom: 1rem;
}
.site-eYez2o-mobile__text ul li::marker { color: var(--olympus-gold); }
.site-eYez2o-casino__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.site-eYez2o-casino__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--olympus-bg-glass);
  border: 1px solid var(--olympus-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color var(--transition-mid), transform var(--transition-mid);
}
.site-eYez2o-casino__card:hover {
  border-color: var(--olympus-gold);
  transform: translateX(4px);
}
.site-eYez2o-casino__card__icon { font-size: 1.8rem; flex-shrink: 0; }
.site-eYez2o-casino__card__info h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--olympus-white);
  margin-bottom: 0.2rem;
}
.site-eYez2o-casino__card__info p { font-size: 0.8rem; color: var(--olympus-text-dim); }
.site-eYez2o-casino__card__arrow {
  margin-left: auto;
  color: var(--olympus-gold);
  font-size: 1.2rem;
}

/* ===== STRATEGIES ===== */
.site-eYez2o-tips__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.site-eYez2o-tip__card {
  background: var(--olympus-bg-glass);
  border: 1px solid var(--olympus-border);
  border-left: 3px solid var(--olympus-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color var(--transition-mid), box-shadow var(--transition-mid);
}
.site-eYez2o-tip__card:hover {
  box-shadow: -4px 0 16px var(--olympus-gold-glow);
}
.site-eYez2o-tip__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--olympus-gold);
  margin-bottom: 0.5rem;
}
.site-eYez2o-tip__card p {
  font-size: 0.9rem;
  color: var(--olympus-text-dim);
  line-height: 1.65;
}

/* ===== PROS & CONS ===== */
.site-eYez2o-proscons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.site-eYez2o-pros__card, .site-eYez2o-cons__card {
  background: var(--olympus-bg-glass);
  border: 1px solid var(--olympus-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.site-eYez2o-pros__card { border-top: 3px solid var(--olympus-success); }
.site-eYez2o-cons__card { border-top: 3px solid var(--olympus-danger); }
.site-eYez2o-pros__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--olympus-success);
  margin-bottom: 1rem;
}
.site-eYez2o-cons__card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--olympus-danger);
  margin-bottom: 1rem;
}
.site-eYez2o-pros__list, .site-eYez2o-cons__list {
  list-style: none;
  padding: 0;
}
.site-eYez2o-pros__list li, .site-eYez2o-cons__list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--olympus-text);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.site-eYez2o-pros__list li::before { content: '✓'; color: var(--olympus-success); font-weight: 700; flex-shrink: 0; }
.site-eYez2o-cons__list li::before { content: '✗'; color: var(--olympus-danger); font-weight: 700; flex-shrink: 0; }

/* ===== RATING ===== */
.site-eYez2o-rating__block {
  background: linear-gradient(135deg, rgba(240,192,64,0.08), rgba(107,63,160,0.1));
  border: 1px solid var(--olympus-border-bright);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  margin: 2rem auto 0;
}
.site-eYez2o-rating__stars { font-size: 2rem; margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.site-eYez2o-rating__score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--olympus-gold);
  display: block;
  line-height: 1;
  text-shadow: 0 0 20px var(--olympus-gold-glow);
}
.site-eYez2o-rating__label { font-size: 0.85rem; color: var(--olympus-text-dim); margin-top: 0.25rem; }
.site-eYez2o-rating__count { font-size: 0.8rem; color: var(--olympus-text-dim); margin-top: 0.5rem; }

/* ===== FAQ ===== */
.site-eYez2o-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-eYez2o-faq__item {
  background: var(--olympus-bg-glass);
  border: 1px solid var(--olympus-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-mid);
}
.site-eYez2o-faq__item--open { border-color: var(--olympus-border-bright); }
.site-eYez2o-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 1rem;
}
.site-eYez2o-faq__question:focus-visible { outline: 2px solid var(--olympus-gold); outline-offset: -2px; }
.site-eYez2o-faq__question h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--olympus-white);
  line-height: 1.4;
}
.site-eYez2o-faq__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(240,192,64,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olympus-gold);
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition-fast), background var(--transition-fast);
}
.site-eYez2o-faq__item--open .site-eYez2o-faq__icon {
  transform: rotate(45deg);
  background: rgba(240,192,64,0.2);
}
.site-eYez2o-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.site-eYez2o-faq__answer__inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--olympus-text-dim);
  line-height: 1.7;
}
.site-eYez2o-faq__answer__inner p { margin-bottom: 0.5rem; }
.site-eYez2o-faq__answer__inner p:last-child { margin-bottom: 0; }

/* ===== ABOUT / AUTHOR ===== */
.site-eYez2o-author__card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--olympus-bg-glass);
  border: 1px solid var(--olympus-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.site-eYez2o-author__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--olympus-gold);
  box-shadow: 0 0 16px var(--olympus-gold-glow);
  flex-shrink: 0;
}
.site-eYez2o-author__info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--olympus-white);
  margin-bottom: 0.25rem;
}
.site-eYez2o-author__title {
  font-size: 0.82rem;
  color: var(--olympus-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: block;
}
.site-eYez2o-author__bio {
  font-size: 0.9rem;
  color: var(--olympus-text-dim);
  line-height: 1.7;
}
.site-eYez2o-about__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.site-eYez2o-about__meta__item {
  background: var(--olympus-bg-glass);
  border: 1px solid var(--olympus-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
  color: var(--olympus-text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-eYez2o-about__meta__item strong { color: var(--olympus-gold); }

/* ===== LEGAL ===== */
.site-eYez2o-legal__block {
  background: rgba(231, 76, 60, 0.06);
  border: 1px solid rgba(231, 76, 60, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.site-eYez2o-legal__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.site-eYez2o-legal__header__icon { font-size: 1.5rem; }
.site-eYez2o-legal__header h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--olympus-danger);
  letter-spacing: 0.04em;
}
.site-eYez2o-legal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.site-eYez2o-legal__item {
  padding: 1rem 1.25rem;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  border-left: 3px solid rgba(231, 76, 60, 0.4);
}
.site-eYez2o-legal__item h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--olympus-marble);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.site-eYez2o-legal__item p {
  font-size: 0.82rem;
  color: var(--olympus-text-dim);
  line-height: 1.6;
}
.site-eYez2o-legal__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(231, 76, 60, 0.2);
}
.site-eYez2o-legal__links a {
  font-size: 0.82rem;
  color: var(--olympus-text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-eYez2o-legal__links a:hover { color: var(--olympus-marble); }

/* ===== CTA SECTION ===== */
.site-eYez2o-cta-section {
  background: linear-gradient(135deg, rgba(107,63,160,0.25), rgba(26,58,110,0.2), rgba(240,192,64,0.08));
  border-top: 1px solid var(--olympus-border);
  border-bottom: 1px solid var(--olympus-border);
  padding: var(--section-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.site-eYez2o-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(107,63,160,0.2), transparent 70%);
  pointer-events: none;
}
.site-eYez2o-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--olympus-white);
  margin-bottom: 1rem;
  position: relative;
}
.site-eYez2o-cta-section p {
  font-size: 1rem;
  color: var(--olympus-text-dim);
  max-width: 520px;
  margin: 0 auto 2rem;
  position: relative;
}
.site-eYez2o-cta-section .site-eYez2o-btn-primary {
  font-size: 1.1rem;
  padding: 1rem 2.8rem;
  position: relative;
}
.site-eYez2o-cta__disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--olympus-text-dim);
  position: relative;
}

/* ===== STICKY CTA ===== */
.site-eYez2o-sticky-cta {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-mid), transform var(--transition-mid);
  white-space: nowrap;
}
.site-eYez2o-sticky-cta--visible {
  opacity: 1;
  pointer-events: all;
}
.site-eYez2o-sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--olympus-gold-dark), var(--olympus-gold));
  color: #0a0812;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(240,192,64,0.5), 0 8px 32px rgba(0,0,0,0.6);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.site-eYez2o-sticky-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(240,192,64,0.65), 0 12px 40px rgba(0,0,0,0.7);
}

/* ===== FOOTER ===== */
.site-eYez2o-footer {
  background: var(--olympus-bg-mid);
  border-top: 1px solid var(--olympus-border);
  padding: 3rem 1.25rem 2rem;
}
.site-eYez2o-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-eYez2o-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--olympus-border);
}
.site-eYez2o-footer__brand h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--olympus-gold);
  margin-bottom: 0.75rem;
}
.site-eYez2o-footer__brand p {
  font-size: 0.85rem;
  color: var(--olympus-text-dim);
  line-height: 1.65;
  max-width: 320px;
}
.site-eYez2o-footer__nav h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--olympus-marble);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.site-eYez2o-footer__nav ul {
  list-style: none;
  padding: 0;
}
.site-eYez2o-footer__nav ul li { margin-bottom: 0.4rem; }
.site-eYez2o-footer__nav ul li a {
  font-size: 0.85rem;
  color: var(--olympus-text-dim);
  transition: color var(--transition-fast);
}
.site-eYez2o-footer__nav ul li a:hover { color: var(--olympus-gold); }
.site-eYez2o-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
.site-eYez2o-footer__copyright {
  font-size: 0.8rem;
  color: var(--olympus-text-dim);
}
.site-eYez2o-footer__legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.site-eYez2o-footer__legal-links a {
  font-size: 0.78rem;
  color: var(--olympus-text-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-eYez2o-footer__legal-links a:hover { color: var(--olympus-gold); }
.site-eYez2o-footer__18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--olympus-danger);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

/* ===== ANIMATIONS ===== */
.site-eYez2o-animate-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.site-eYez2o-animate-in--visible {
  opacity: 1;
  transform: translateY(0);
}
.site-eYez2o-animate-in--delay-1 { transition-delay: 0.1s; }
.site-eYez2o-animate-in--delay-2 { transition-delay: 0.2s; }
.site-eYez2o-animate-in--delay-3 { transition-delay: 0.3s; }
.site-eYez2o-animate-in--delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE 768px ===== */
@media (min-width: 768px) {
  .site-eYez2o-nav { display: flex; }
  .site-eYez2o-header__cta { display: inline-flex; }
  .site-eYez2o-hamburger { display: none; }
  .site-eYez2o-hero__actions { flex-direction: row; justify-content: center; }
  .site-eYez2o-overview__grid { grid-template-columns: repeat(2, 1fr); }
  .site-eYez2o-multiplier__grid { grid-template-columns: repeat(4, 1fr); }
  .site-eYez2o-symbols__grid { grid-template-columns: repeat(3, 1fr); }
  .site-eYez2o-proscons__grid { grid-template-columns: repeat(2, 1fr); }
  .site-eYez2o-author__card { flex-direction: row; }
  .site-eYez2o-legal__grid { grid-template-columns: repeat(2, 1fr); }
  .site-eYez2o-footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .site-eYez2o-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .site-eYez2o-demo__benefits { grid-template-columns: repeat(2, 1fr); }
  .site-eYez2o-tips__grid { grid-template-columns: repeat(2, 1fr); }
  .site-eYez2o-casino__cards { grid-template-columns: repeat(2, 1fr); }
}

/* ===== RESPONSIVE 1024px ===== */
@media (min-width: 1024px) {
  .site-eYez2o-overview__grid { grid-template-columns: repeat(4, 1fr); }
  .site-eYez2o-mechanics__layout { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .site-eYez2o-mobile__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .site-eYez2o-symbols__grid { grid-template-columns: repeat(4, 1fr); }
  .site-eYez2o-tips__grid { grid-template-columns: repeat(3, 1fr); }
  .site-eYez2o-legal__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== FOCUS STYLES ===== */
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--olympus-gold);
  outline-offset: 3px;
}

.gen-vplprjzs {
  font-family: Inter, sans-serif;
  color: rgb(212, 204, 192);
  padding: 40px 20px;
  box-sizing: border-box;
}

.gen-vplprjzs .site-eYez2o-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.gen-vplprjzs .site-eYez2o-section__eyebrow {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 12px;
}

.gen-vplprjzs .site-eYez2o-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #f0e6d3;
  margin: 0 0 16px 0;
  text-align: center;
  line-height: 1.3;
}

.gen-vplprjzs .site-eYez2o-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d080);
  border-radius: 2px;
  margin: 0 auto;
}

.gen-vplprjzs .site-eYez2o-overview__intro {
  max-width: 820px;
  margin: 0 auto 48px auto;
}

.gen-vplprjzs .site-eYez2o-overview__intro p {
  font-size: 16px;
  line-height: 1.8;
  color: rgb(212, 204, 192);
  margin: 0 0 20px 0;
}

.gen-vplprjzs .site-eYez2o-overview__intro p:last-child {
  margin-bottom: 0;
}

.gen-vplprjzs .site-eYez2o-overview__intro strong {
  color: #f0d080;
  font-weight: 700;
}

.gen-vplprjzs .site-eYez2o-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .gen-vplprjzs .site-eYez2o-overview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gen-vplprjzs .site-eYez2o-overview__grid {
    grid-template-columns: 1fr;
  }
}

.gen-vplprjzs .site-eYez2o-overview__card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.gen-vplprjzs .site-eYez2o-overview__card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.15);
}

.gen-vplprjzs .site-eYez2o-overview__card__icon {
  display: block;
  font-size: 40px;
  margin-bottom: 14px;
  line-height: 1;
}

.gen-vplprjzs .site-eYez2o-overview__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #f0e6d3;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.gen-vplprjzs .site-eYez2o-overview__card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgb(212, 204, 192);
  margin: 0;
}

.gen-b2qdfodn {
  font-family: Inter, sans-serif;
  color: rgb(212, 204, 192);
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.gen-b2qdfodn .gen-b2qdfodn__steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
}

.gen-b2qdfodn .gen-b2qdfodn__steps-wrapper::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(212,180,100,0.6), rgba(212,180,100,0.1));
  z-index: 0;
}

.gen-b2qdfodn .gen-b2qdfodn__step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 28px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,180,100,0.15);
  border-radius: 12px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  z-index: 1;
}

.gen-b2qdfodn .gen-b2qdfodn__step:hover {
  background: rgba(212,180,100,0.07);
  border-color: rgba(212,180,100,0.4);
  transform: translateX(4px);
}

.gen-b2qdfodn .gen-b2qdfodn__step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  color: #1a1208;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(212,180,100,0.4);
  position: relative;
  z-index: 2;
}

.gen-b2qdfodn .gen-b2qdfodn__step-body {
  flex: 1;
  padding-top: 4px;
}

.gen-b2qdfodn .gen-b2qdfodn__step-body h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: #e8d9b8;
  line-height: 1.3;
}

.gen-b2qdfodn .gen-b2qdfodn__step-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgb(180, 172, 160);
}

@media (max-width: 600px) {
  .gen-b2qdfodn .gen-b2qdfodn__step {
    flex-direction: column;
    gap: 12px;
    padding: 18px 16px;
  }
  .gen-b2qdfodn .gen-b2qdfodn__steps-wrapper::before {
    display: none;
  }
}

.gen-6cbrp7pr {
  font-family: Inter, sans-serif;
  color: rgb(212, 204, 192);
  box-sizing: border-box;
}

.gen-6cbrp7pr .gen-6cbrp7pr-caption {
  text-align: left;
  font-family: var(--font-display, Georgia, serif);
  font-size: 0.9rem;
  color: var(--olympus-gold, #c9a84c);
  margin-bottom: 0.75rem;
  font-weight: 700;
  display: table-caption;
}

.gen-6cbrp7pr .gen-6cbrp7pr-img {
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--olympus-border, rgba(255,255,255,0.15));
  margin-top: 1.5rem;
  width: 100%;
  display: block;
}

.gen-q2dwo3f4 {
  font-family: Inter, sans-serif;
  color: rgb(212, 204, 192);
  padding: 40px 20px;
  box-sizing: border-box;
  max-width: 1100px;
  margin: 0 auto;
}

.gen-q2dwo3f4 .site-eYez2o-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.gen-q2dwo3f4 .site-eYez2o-section__eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  color: #c9a84c;
  margin-bottom: 14px;
  font-weight: 600;
}

.gen-q2dwo3f4 .site-eYez2o-section__title {
  font-size: 28px;
  font-weight: 700;
  color: #f0e6d0;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.gen-q2dwo3f4 .site-eYez2o-section__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgb(212, 204, 192);
  max-width: 620px;
  margin: 0 auto 20px auto;
}

.gen-q2dwo3f4 .site-eYez2o-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d080);
  border-radius: 2px;
  margin: 0 auto;
}

.gen-q2dwo3f4 .site-eYez2o-multiplier__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.gen-q2dwo3f4 .site-eYez2o-multiplier__card {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.gen-q2dwo3f4 .site-eYez2o-multiplier__card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.7);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
}

.gen-q2dwo3f4 .site-eYez2o-multiplier__card__value {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, #c9a84c, #f0d080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.gen-q2dwo3f4 .site-eYez2o-multiplier__card__label {
  font-size: 13px;
  color: rgb(212, 204, 192);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

.gen-q2dwo3f4 .site-eYez2o-multiplier__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gen-q2dwo3f4 .site-eYez2o-multiplier__text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgb(212, 204, 192);
  margin: 0;
}

.gen-q2dwo3f4 .site-eYez2o-multiplier__text strong {
  color: #f0d080;
  font-weight: 700;
}

@media (max-width: 768px) {
  .gen-q2dwo3f4 .site-eYez2o-multiplier__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gen-q2dwo3f4 .site-eYez2o-section__title {
    font-size: 22px;
  }
  .gen-q2dwo3f4 .site-eYez2o-multiplier__card__value {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .gen-q2dwo3f4 .site-eYez2o-multiplier__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gen-oqnbab48 {
  font-family: Inter, sans-serif;
  color: rgb(212, 204, 192);
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.gen-oqnbab48 .site-eYez2o-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.gen-oqnbab48 .site-eYez2o-section__eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.5rem;
}

.gen-oqnbab48 .site-eYez2o-section__title {
  font-size: 2rem;
  font-weight: 700;
  color: #f0e6d3;
  margin: 0 0 1rem;
}

.gen-oqnbab48 .site-eYez2o-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d080);
  border-radius: 2px;
  margin: 0 auto;
}

.gen-oqnbab48 .site-eYez2o-maxwin__highlight {
  text-align: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(240,208,128,0.06) 100%);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.gen-oqnbab48 .site-eYez2o-maxwin__highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.gen-oqnbab48 .site-eYez2o-maxwin__number {
  display: block;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #c9a84c 0%, #f0d080 50%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  text-shadow: none;
  filter: drop-shadow(0 0 18px rgba(201,168,76,0.45));
}

.gen-oqnbab48 .site-eYez2o-maxwin__label {
  display: block;
  font-size: 1rem;
  color: rgba(212,204,192,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gen-oqnbab48 .site-eYez2o-maxwin__text {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.gen-oqnbab48 .site-eYez2o-maxwin__text p {
  margin: 0 0 1.1rem;
  font-size: 0.97rem;
  color: rgb(212, 204, 192);
}

.gen-oqnbab48 .site-eYez2o-maxwin__text strong {
  color: #f0d080;
  font-weight: 700;
}

.gen-oqnbab48 .site-eYez2o-info-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.2);
}

.gen-oqnbab48 .gen-oqnbab48-caption {
  text-align: left;
  font-size: 0.9rem;
  color: #c9a84c;
  margin-bottom: 0.75rem;
  font-weight: 700;
  padding: 0.75rem 1rem 0;
  display: block;
}

.gen-oqnbab48 .site-eYez2o-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.gen-oqnbab48 .site-eYez2o-info-table thead tr {
  background: rgba(201,168,76,0.15);
}

.gen-oqnbab48 .site-eYez2o-info-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  color: #f0d080;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  white-space: nowrap;
}

.gen-oqnbab48 .site-eYez2o-info-table td {
  padding: 0.8rem 1rem;
  color: rgb(212, 204, 192);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}

.gen-oqnbab48 .site-eYez2o-info-table tbody tr:last-child td {
  border-bottom: none;
}

.gen-oqnbab48 .site-eYez2o-info-table tbody tr:hover {
  background: rgba(201,168,76,0.07);
  transition: background 0.2s ease;
}

.gen-oqnbab48 .site-eYez2o-info-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}

.gen-oqnbab48 .site-eYez2o-info-table tbody tr:nth-child(even):hover {
  background: rgba(201,168,76,0.07);
}

.gen-08dlwz9k {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  color: rgb(212, 204, 192);
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.gen-08dlwz9k h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  color: #fff;
}

.gen-08dlwz9k h3:first-child {
  margin-top: 0;
}

.gen-08dlwz9k p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.gen-08dlwz9k ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.gen-08dlwz9k ul li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
  list-style: disc;
}

.gen-08dlwz9k strong {
  color: #fff;
  font-weight: 600;
}

.gen-08dlwz9k .site-eYez2o-casino__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gen-08dlwz9k .site-eYez2o-casino__card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.gen-08dlwz9k .site-eYez2o-casino__card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}

.gen-08dlwz9k .site-eYez2o-casino__card__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.gen-08dlwz9k .site-eYez2o-casino__card__info {
  flex: 1;
}

.gen-08dlwz9k .site-eYez2o-casino__card__info h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.gen-08dlwz9k .site-eYez2o-casino__card__info p {
  font-size: 0.75rem;
  color: rgb(180, 172, 160);
  margin: 0;
  line-height: 1.4;
}

.gen-08dlwz9k .site-eYez2o-casino__card__arrow {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .gen-08dlwz9k {
    grid-template-columns: 1fr;
  }
  .gen-08dlwz9k .site-eYez2o-casino__cards {
    grid-template-columns: 1fr;
  }
}

.gen-xnsbj1vn {
  font-family: Inter, sans-serif;
  color: rgb(212, 204, 192);
  padding: 40px 20px;
  box-sizing: border-box;
}

.gen-xnsbj1vn .site-eYez2o-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.gen-xnsbj1vn .site-eYez2o-section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 12px;
}

.gen-xnsbj1vn .site-eYez2o-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #f0e6d3;
  margin: 10px 0 16px;
  line-height: 1.2;
}

.gen-xnsbj1vn .site-eYez2o-section__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgb(212, 204, 192);
  max-width: 600px;
  margin: 0 auto 20px;
  opacity: 0.85;
}

.gen-xnsbj1vn .site-eYez2o-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #f0d080);
  border-radius: 2px;
  margin: 0 auto;
}

.gen-xnsbj1vn .site-eYez2o-tips__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .gen-xnsbj1vn .site-eYez2o-tips__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .gen-xnsbj1vn .site-eYez2o-tips__grid {
    grid-template-columns: 1fr;
  }
  .gen-xnsbj1vn .site-eYez2o-section__title {
    font-size: 22px;
  }
}

.gen-xnsbj1vn .site-eYez2o-tip__card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(201,168,76,0.07) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.gen-xnsbj1vn .site-eYez2o-tip__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gen-xnsbj1vn .site-eYez2o-tip__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.45);
}

.gen-xnsbj1vn .site-eYez2o-tip__card:hover::before {
  opacity: 1;
}

.gen-xnsbj1vn .gen-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

.gen-xnsbj1vn .site-eYez2o-tip__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #f0e6d3;
  margin: 0 0 12px;
  line-height: 1.3;
}

.gen-xnsbj1vn .site-eYez2o-tip__card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgb(212, 204, 192);
  opacity: 0.85;
  margin: 0;
}

._extracted-style-_2EW { color: var(--olympus-gold); border-bottom-color: var(--olympus-gold); }

._extracted-style-j1UN { margin-top:2.5rem; }

._extracted-style-n-fD { border-radius:var(--radius-md);border:1px solid var(--olympus-border);width:100%;margin-bottom:1.5rem; }