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

:root {
  /* Color Tokens */
  --olympus-void: #05050f;
  --olympus-deep: #0a0a1a;
  --olympus-surface: #0f0f2a;
  --olympus-card: rgba(15, 15, 42, 0.85);
  --olympus-card-border: rgba(240, 192, 64, 0.18);
  --olympus-gold: #f0c040;
  --olympus-gold-light: #ffd966;
  --olympus-gold-dim: rgba(240, 192, 64, 0.15);
  --olympus-electric: #3b82f6;
  --olympus-electric-glow: rgba(59, 130, 246, 0.35);
  --olympus-lightning: #60a5fa;
  --olympus-marble: #e8e8f0;
  --olympus-marble-dim: rgba(232, 232, 240, 0.7);
  --olympus-white: #ffffff;
  --olympus-muted: rgba(232, 232, 240, 0.5);
  --olympus-danger: #ef4444;
  --olympus-success: #10b981;
  --olympus-overlay: rgba(5, 5, 15, 0.75);

  /* Glow Effects */
  --glow-gold: 0 0 20px rgba(240, 192, 64, 0.4), 0 0 40px rgba(240, 192, 64, 0.15);
  --glow-electric: 0 0 20px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.2);
  --glow-card: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(240, 192, 64, 0.12);

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--olympus-void);
  color: var(--olympus-marble);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
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; }

/* ===== TYPOGRAPHY ===== */
.site-w1PP6K-display { font-family: var(--font-display); }
.site-w1PP6K-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--olympus-gold);
  text-align: center;
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}
.site-w1PP6K-section-subtitle {
  text-align: center;
  color: var(--olympus-marble-dim);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}
..site-w1PP6K-text-gold { color: var(--olympus-gold); }

/* ===== LAYOUT ===== */
..site-w1PP6K-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}
.site-w1PP6K-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}
.site-w1PP6K-section {
  padding: var(--space-xl) 0;
  position: relative;
}
.site-w1PP6K-section--alt {
  background: linear-gradient(180deg, var(--olympus-deep) 0%, var(--olympus-surface) 100%);
}

/* ===== DIVIDER ===== */
.site-w1PP6K-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--olympus-gold), transparent);
  margin: 0 auto var(--space-lg);
  border-radius: 2px;
}

/* ===== HEADER / NAV ===== */
.site-w1PP6K-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 192, 64, 0.12);
  transition: background var(--transition-smooth);
}
.site-w1PP6K-header--scrolled {
  background: rgba(5, 5, 15, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.site-w1PP6K-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--space-sm);
  max-width: 1100px;
  margin: 0 auto;
}
.site-w1PP6K-nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--olympus-gold);
  letter-spacing: 0.05em;
  text-shadow: var(--glow-gold);
  white-space: nowrap;
}
.site-w1PP6K-nav-links {
  display: none;
  list-style: none;
  gap: var(--space-md);
  padding: 0;
  margin: 0;
}
.site-w1PP6K-nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--olympus-marble-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}
.site-w1PP6K-nav-links a:hover { color: var(--olympus-gold); }
.site-w1PP6K-nav-cta {
  display: none;
  background: linear-gradient(135deg, var(--olympus-gold), #d4a017);
  color: var(--olympus-void) !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  border: none;
}
.site-w1PP6K-nav-cta:hover {
  box-shadow: var(--glow-gold);
  transform: translateY(-1px);
  color: var(--olympus-void) !important;
}
.site-w1PP6K-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  aria-label: "Menú";
}
.site-w1PP6K-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--olympus-gold);
  border-radius: 2px;
  transition: transform var(--transition-smooth), opacity var(--transition-fast);
}
.site-w1PP6K-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-w1PP6K-hamburger.active span:nth-child(2) { opacity: 0; }
.site-w1PP6K-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-w1PP6K-mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(5, 5, 15, 0.98);
  border-top: 1px solid rgba(240, 192, 64, 0.1);
  padding: var(--space-sm);
  gap: 0.25rem;
}
.site-w1PP6K-mobile-menu.open { display: flex; }
.site-w1PP6K-mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--olympus-marble-dim);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.site-w1PP6K-mobile-menu a:hover {
  background: var(--olympus-gold-dim);
  color: var(--olympus-gold);
}

/* ===== STICKY CTA ===== */
.site-w1PP6K-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, rgba(5,5,15,0.97), rgba(10,10,26,0.97));
  border-top: 1px solid rgba(240, 192, 64, 0.2);
  padding: 0.75rem var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  backdrop-filter: blur(12px);
}
.site-w1PP6K-sticky-cta p {
  font-size: 0.85rem;
  color: var(--olympus-marble-dim);
  display: none;
}
.site-w1PP6K-btn-sticky {
  background: linear-gradient(135deg, var(--olympus-gold), #d4a017);
  color: var(--olympus-void);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}
.site-w1PP6K-btn-sticky:hover {
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}
.site-w1PP6K-btn-sticky:focus-visible {
  outline: 2px solid var(--olympus-white);
  outline-offset: 3px;
}

/* ===== HERO ===== */
.site-w1PP6K-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px var(--space-sm) var(--space-xl);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(240, 192, 64, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--olympus-void) 0%, var(--olympus-deep) 60%, var(--olympus-surface) 100%);
}
.site-w1PP6K-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.site-w1PP6K-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: blur(2px);
}
.site-w1PP6K-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,15,0.4) 0%, rgba(5,5,15,0.7) 60%, var(--olympus-void) 100%);
}
.site-w1PP6K-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.site-w1PP6K-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.site-w1PP6K-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 192, 64, 0.1);
  border: 1px solid rgba(240, 192, 64, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--olympus-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.site-w1PP6K-hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--olympus-success);
  border-radius: 50%;
  animation: site-w1PP6K-pulse 2s infinite;
}
.site-w1PP6K-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);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}
.site-w1PP6K-hero h1 span {
  background: linear-gradient(135deg, var(--olympus-gold), var(--olympus-gold-light), #fff8dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  display: block;
}
.site-w1PP6K-hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--olympus-marble-dim);
  max-width: 580px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}
.site-w1PP6K-hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-lg);
}
.site-w1PP6K-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--olympus-gold) 0%, #d4a017 100%);
  color: var(--olympus-void);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: box-shadow var(--transition-smooth), transform var(--transition-fast);
  box-shadow: 0 4px 24px rgba(240, 192, 64, 0.3);
}
.site-w1PP6K-btn-primary:hover {
  box-shadow: var(--glow-gold), 0 8px 32px rgba(240, 192, 64, 0.4);
  transform: translateY(-3px);
  color: var(--olympus-void);
}
.site-w1PP6K-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--olympus-marble);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(232, 232, 240, 0.25);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}
.site-w1PP6K-btn-secondary:hover {
  border-color: var(--olympus-gold);
  color: var(--olympus-gold);
  background: var(--olympus-gold-dim);
}
.site-w1PP6K-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}
.site-w1PP6K-hero-stat {
  text-align: center;
}
.site-w1PP6K-hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--olympus-gold);
  display: block;
  text-shadow: var(--glow-gold);
}
.site-w1PP6K-hero-stat-label {
  font-size: 0.75rem;
  color: var(--olympus-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== OVERVIEW CARDS ===== */
.site-w1PP6K-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.site-w1PP6K-overview-card {
  background: var(--olympus-card);
  border: 1px solid var(--olympus-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: blur(12px);
  box-shadow: var(--glow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  cursor: default;
}
.site-w1PP6K-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-card), 0 0 0 1px rgba(240, 192, 64, 0.25);
  border-color: rgba(240, 192, 64, 0.35);
}
.site-w1PP6K-overview-icon {
  width: 48px;
  height: 48px;
  background: var(--olympus-gold-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--olympus-gold);
}
.site-w1PP6K-overview-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--olympus-gold-light);
  margin-bottom: 0.4rem;
}
.site-w1PP6K-overview-card p {
  font-size: 0.9rem;
  color: var(--olympus-marble-dim);
  line-height: 1.6;
}

/* ===== CONTENT SECTIONS ===== */
.site-w1PP6K-content-block {
  max-width: 820px;
  margin: 0 auto;
}
.site-w1PP6K-content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--olympus-gold);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}
.site-w1PP6K-content-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--olympus-gold-light);
  margin: var(--space-md) 0 0.6rem;
}
.site-w1PP6K-content-block p {
  color: var(--olympus-marble-dim);
  margin-bottom: var(--space-sm);
  font-size: 0.97rem;
  line-height: 1.8;
}
.site-w1PP6K-content-block ul, .site-w1PP6K-content-block ol {
  color: var(--olympus-marble-dim);
  font-size: 0.97rem;
  margin-bottom: var(--space-sm);
}
.site-w1PP6K-content-block li { margin-bottom: 0.5rem; }

/* ===== GLASS CARD ===== */
.site-w1PP6K-glass-card {
  background: var(--olympus-card);
  border: 1px solid var(--olympus-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(16px);
  box-shadow: var(--glow-card);
}

/* ===== SLOT VISUAL ===== */
.site-w1PP6K-slot-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}
.site-w1PP6K-slot-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glow-gold), 0 16px 48px rgba(0,0,0,0.7);
  cursor: pointer;
  transition: transform var(--transition-smooth);
  width: 100%;
  max-width: 520px;
}
.site-w1PP6K-slot-img-wrap:hover { transform: scale(1.02); }
.site-w1PP6K-slot-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.site-w1PP6K-slot-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,15,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
}
.site-w1PP6K-slot-img-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--olympus-gold);
  letter-spacing: 0.05em;
}

/* ===== MECHANICS GRID ===== */
.site-w1PP6K-mechanics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.site-w1PP6K-mechanic-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: rgba(240, 192, 64, 0.05);
  border: 1px solid rgba(240, 192, 64, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.site-w1PP6K-mechanic-item:hover {
  border-color: rgba(240, 192, 64, 0.3);
  background: rgba(240, 192, 64, 0.08);
}
.site-w1PP6K-mechanic-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.site-w1PP6K-mechanic-text h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--olympus-gold-light);
  margin-bottom: 0.25rem;
}
.site-w1PP6K-mechanic-text p {
  font-size: 0.85rem;
  color: var(--olympus-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== MULTIPLIER SHOWCASE ===== */
.site-w1PP6K-multiplier-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}
.site-w1PP6K-mult-card {
  background: linear-gradient(135deg, rgba(240, 192, 64, 0.08), rgba(240, 192, 64, 0.03));
  border: 1px solid rgba(240, 192, 64, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.site-w1PP6K-mult-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}
.site-w1PP6K-mult-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--olympus-gold);
  display: block;
  text-shadow: var(--glow-gold);
}
.site-w1PP6K-mult-label {
  font-size: 0.78rem;
  color: var(--olympus-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== DEMO SECTION ===== */
.site-w1PP6K-demo-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(240, 192, 64, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.site-w1PP6K-demo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-electric);
}
.site-w1PP6K-demo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.site-w1PP6K-demo-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-sm);
  display: block;
}
.site-w1PP6K-demo-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--olympus-gold);
  margin-bottom: 0.75rem;
}
.site-w1PP6K-demo-card p {
  color: var(--olympus-marble-dim);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== RTP TABLE ===== */
.site-w1PP6K-table-scroll { overflow-x: auto; border-radius: var(--radius-md); }
.site-w1PP6K-rtp-table {
  width: 100%;
  min-width: 600px;
  max-width: 1024px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.site-w1PP6K-rtp-table thead tr {
  background: linear-gradient(90deg, rgba(240, 192, 64, 0.15), rgba(240, 192, 64, 0.08));
}
.site-w1PP6K-rtp-table th {
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--olympus-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(240, 192, 64, 0.2);
}
.site-w1PP6K-rtp-table td {
  padding: 0.85rem 1.2rem;
  color: var(--olympus-marble-dim);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.site-w1PP6K-rtp-table tr:hover td { background: rgba(240, 192, 64, 0.04); }
.site-w1PP6K-rtp-table .highlight { color: var(--olympus-gold-light); font-weight: 600; }
.site-w1PP6K-rtp-table .badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}
.site-w1PP6K-rtp-table .badge--high { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.site-w1PP6K-rtp-table .badge--med { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.site-w1PP6K-rtp-table .badge--good { background: rgba(16, 185, 129, 0.15); color: #34d399; }

/* ===== SYMBOLS GRID ===== */
.site-w1PP6K-symbols-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
.site-w1PP6K-symbol-card {
  background: var(--olympus-card);
  border: 1px solid var(--olympus-card-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: border-color var(--transition-fast);
}
.site-w1PP6K-symbol-card:hover { border-color: rgba(240, 192, 64, 0.3); }
.site-w1PP6K-symbol-emoji { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.site-w1PP6K-symbol-info h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--olympus-gold-light);
  margin-bottom: 0.2rem;
}
.site-w1PP6K-symbol-info p {
  font-size: 0.8rem;
  color: var(--olympus-muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== MOBILE SECTION ===== */
.site-w1PP6K-mobile-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
.site-w1PP6K-mobile-feat {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  padding: 0.75rem var(--space-sm);
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
}
.site-w1PP6K-mobile-feat-icon {
  color: var(--olympus-electric);
  flex-shrink: 0;
}
.site-w1PP6K-mobile-feat p {
  font-size: 0.9rem;
  color: var(--olympus-marble-dim);
  margin: 0;
}

/* ===== PROS CONS ===== */
.site-w1PP6K-pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.site-w1PP6K-pros-card, .site-w1PP6K-cons-card {
  background: var(--olympus-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  backdrop-filter: blur(12px);
}
.site-w1PP6K-pros-card {
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.site-w1PP6K-cons-card {
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.site-w1PP6K-pros-card h3 {
  font-family: var(--font-display);
  color: var(--olympus-success);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}
.site-w1PP6K-cons-card h3 {
  font-family: var(--font-display);
  color: var(--olympus-danger);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}
.site-w1PP6K-pros-list, .site-w1PP6K-cons-list {
  list-style: none;
  padding: 0;
}
.site-w1PP6K-pros-list li, .site-w1PP6K-cons-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--olympus-marble-dim);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.site-w1PP6K-pros-list li::before {
  content: '✓';
  color: var(--olympus-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.site-w1PP6K-cons-list li::before {
  content: '✗';
  color: var(--olympus-danger);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ===== STRATEGY TIPS ===== */
.site-w1PP6K-tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
.site-w1PP6K-tip-card {
  background: var(--olympus-card);
  border: 1px solid var(--olympus-card-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  transition: border-color var(--transition-fast);
}
.site-w1PP6K-tip-card:hover { border-color: rgba(240, 192, 64, 0.3); }
.site-w1PP6K-tip-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(240, 192, 64, 0.25);
  flex-shrink: 0;
  line-height: 1.2;
  min-width: 2rem;
}
.site-w1PP6K-tip-content h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--olympus-gold-light);
  margin-bottom: 0.3rem;
}
.site-w1PP6K-tip-content p {
  font-size: 0.87rem;
  color: var(--olympus-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.site-w1PP6K-faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.site-w1PP6K-faq-item {
  border: 1px solid rgba(240, 192, 64, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.site-w1PP6K-faq-item.open { border-color: rgba(240, 192, 64, 0.3); }
.site-w1PP6K-faq-question {
  width: 100%;
  background: var(--olympus-card);
  border: none;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: var(--space-sm);
  transition: background var(--transition-fast);
}
.site-w1PP6K-faq-question:hover { background: rgba(240, 192, 64, 0.06); }
.site-w1PP6K-faq-question-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--olympus-marble);
  line-height: 1.5;
}
.site-w1PP6K-faq-chevron {
  color: var(--olympus-gold);
  flex-shrink: 0;
  transition: transform var(--transition-smooth);
}
.site-w1PP6K-faq-item.open .site-w1PP6K-faq-chevron { transform: rotate(180deg); }
.site-w1PP6K-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding var(--transition-smooth);
  background: rgba(5, 5, 15, 0.5);
}
.site-w1PP6K-faq-item.open .site-w1PP6K-faq-answer { max-height: 400px; }
.site-w1PP6K-faq-answer-inner {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  font-size: 0.92rem;
  color: var(--olympus-marble-dim);
  line-height: 1.8;
}

/* ===== ABOUT / AUTHOR ===== */
.site-w1PP6K-author-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
  background: var(--olympus-card);
  border: 1px solid var(--olympus-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 700px;
  margin: 0 auto;
}
.site-w1PP6K-author-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--olympus-gold);
  box-shadow: var(--glow-gold);
  object-fit: cover;
  flex-shrink: 0;
}
.site-w1PP6K-author-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--olympus-gold);
  margin-bottom: 0.25rem;
}
.site-w1PP6K-author-title {
  font-size: 0.85rem;
  color: var(--olympus-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.site-w1PP6K-author-bio {
  font-size: 0.92rem;
  color: var(--olympus-marble-dim);
  line-height: 1.8;
}
.site-w1PP6K-author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.site-w1PP6K-author-tag {
  background: var(--olympus-gold-dim);
  border: 1px solid rgba(240, 192, 64, 0.2);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--olympus-gold);
  font-weight: 500;
}
.site-w1PP6K-update-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  color: var(--olympus-success);
  margin-top: var(--space-sm);
}

/* ===== LEGAL ===== */
.site-w1PP6K-legal-section {
  background: linear-gradient(180deg, var(--olympus-surface) 0%, var(--olympus-deep) 100%);
  border-top: 1px solid rgba(239, 68, 68, 0.2);
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}
.site-w1PP6K-legal-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  justify-content: center;
}
.site-w1PP6K-legal-icon {
  font-size: 1.8rem;
}
.site-w1PP6K-legal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--olympus-danger);
}
.site-w1PP6K-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--olympus-danger);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.4);
}
.site-w1PP6K-legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
.site-w1PP6K-legal-item {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}
.site-w1PP6K-legal-item h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: #f87171;
  margin-bottom: 0.4rem;
}
.site-w1PP6K-legal-item p {
  font-size: 0.85rem;
  color: var(--olympus-muted);
  margin: 0;
  line-height: 1.7;
}
.site-w1PP6K-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-md);
}
.site-w1PP6K-legal-links a {
  font-size: 0.82rem;
  color: var(--olympus-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-w1PP6K-legal-links a:hover { color: var(--olympus-marble); }

/* ===== CTA FINAL ===== */
.site-w1PP6K-cta-final {
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(240, 192, 64, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--olympus-deep) 0%, var(--olympus-void) 100%);
  text-align: center;
  padding: var(--space-2xl) var(--space-sm);
}
.site-w1PP6K-cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--olympus-white);
  margin-bottom: var(--space-sm);
}
.site-w1PP6K-cta-final h2 span {
  color: var(--olympus-gold);
  text-shadow: var(--glow-gold);
}
.site-w1PP6K-cta-final p {
  color: var(--olympus-marble-dim);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}
.site-w1PP6K-cta-disclaimer {
  font-size: 0.78rem !important;
  color: var(--olympus-muted) !important;
  margin-top: var(--space-sm) !important;
}

/* ===== FOOTER ===== */
.site-w1PP6K-footer {
  background: var(--olympus-void);
  border-top: 1px solid rgba(240, 192, 64, 0.08);
  padding: var(--space-xl) var(--space-sm) var(--space-lg);
}
.site-w1PP6K-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto var(--space-lg);
}
.site-w1PP6K-footer-brand p {
  font-size: 0.87rem;
  color: var(--olympus-muted);
  line-height: 1.7;
  margin-top: 0.75rem;
}
.site-w1PP6K-footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--olympus-gold);
  letter-spacing: 0.05em;
}
.site-w1PP6K-footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--olympus-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.site-w1PP6K-footer-col ul {
  list-style: none;
  padding: 0;
}
.site-w1PP6K-footer-col li { margin-bottom: 0.5rem; }
.site-w1PP6K-footer-col a {
  font-size: 0.87rem;
  color: var(--olympus-muted);
  transition: color var(--transition-fast);
}
.site-w1PP6K-footer-col a:hover { color: var(--olympus-gold); }
.site-w1PP6K-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
.site-w1PP6K-footer-bottom p {
  font-size: 0.78rem;
  color: var(--olympus-muted);
  line-height: 1.6;
}
.site-w1PP6K-footer-age {
  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: 900;
  color: white;
  flex-shrink: 0;
}

/* ===== RATING STARS ===== */
.site-w1PP6K-stars {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.site-w1PP6K-star {
  color: var(--olympus-gold);
  font-size: 1.1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes site-w1PP6K-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@keyframes site-w1PP6K-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes site-w1PP6K-glow-pulse {
  0%, 100% { box-shadow: var(--glow-gold); }
  50% { box-shadow: 0 0 40px rgba(240, 192, 64, 0.6), 0 0 80px rgba(240, 192, 64, 0.25); }
}
@keyframes site-w1PP6K-lightning {
  0%, 90%, 100% { opacity: 0; }
  92%, 96% { opacity: 0.6; }
}
@keyframes site-w1PP6K-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.site-w1PP6K-animate-float { animation: site-w1PP6K-float 4s ease-in-out infinite; }
.site-w1PP6K-animate-glow { animation: site-w1PP6K-glow-pulse 3s ease-in-out infinite; }
.site-w1PP6K-fade-up { opacity: 0; }
.site-w1PP6K-fade-up.visible { animation: site-w1PP6K-fade-up 0.6s ease forwards; }

/* ===== LIGHTNING PARTICLES ===== */
.site-w1PP6K-particle {
  position: absolute;
  width: 2px;
  border-radius: 1px;
  background: linear-gradient(180deg, var(--olympus-gold), transparent);
  animation: site-w1PP6K-lightning 4s infinite;
  pointer-events: none;
}

/* ===== SCROLL PROGRESS ===== */
.site-w1PP6K-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--olympus-gold), var(--olympus-electric));
  z-index: 1001;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(240, 192, 64, 0.5);
}

/* ===== RESPONSIVE: 768px ===== */
@media (min-width: 768px) {
  .site-w1PP6K-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .site-w1PP6K-mechanics-grid { grid-template-columns: repeat(2, 1fr); }
  .site-w1PP6K-multiplier-showcase { grid-template-columns: repeat(4, 1fr); }
  .site-w1PP6K-symbols-grid { grid-template-columns: repeat(3, 1fr); }
  .site-w1PP6K-pros-cons { grid-template-columns: repeat(2, 1fr); }
  .site-w1PP6K-tips-grid { grid-template-columns: repeat(2, 1fr); }
  .site-w1PP6K-mobile-features { grid-template-columns: repeat(2, 1fr); }
  .site-w1PP6K-legal-grid { grid-template-columns: repeat(2, 1fr); }
  .site-w1PP6K-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .site-w1PP6K-hero-actions { flex-direction: row; justify-content: center; }
  .site-w1PP6K-author-card { flex-direction: row; text-align: left; }
  .site-w1PP6K-author-meta { justify-content: flex-start; }
  .site-w1PP6K-sticky-cta p { display: block; }
}

/* ===== RESPONSIVE: 1024px ===== */
@media (min-width: 1024px) {
  .site-w1PP6K-nav-links { display: flex; }
  .site-w1PP6K-nav-cta { display: inline-flex; }
  .site-w1PP6K-hamburger { display: none; }
  .site-w1PP6K-overview-grid { grid-template-columns: repeat(4, 1fr); }
  .site-w1PP6K-symbols-grid { grid-template-columns: repeat(4, 1fr); }
  .site-w1PP6K-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .site-w1PP6K-slot-visual { flex-direction: row; align-items: flex-start; }
  .site-w1PP6K-slot-img-wrap { max-width: 420px; }
  .site-w1PP6K-legal-grid { grid-template-columns: repeat(3, 1fr); }
  .site-w1PP6K-tips-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-pavioid2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
  color: rgb(232, 232, 240);
}

.gen-pavioid2 .site-w1PP6K-overview-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gen-pavioid2 .site-w1PP6K-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.gen-pavioid2 .site-w1PP6K-overview-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(232, 232, 240);
  flex-shrink: 0;
}

.gen-pavioid2 h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: rgb(232, 232, 240);
  line-height: 1.3;
}

.gen-pavioid2 p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(232, 232, 240, 0.75);
}

.gen-pavioid2 p strong {
  color: rgb(232, 232, 240);
  font-weight: 600;
}

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

@media (max-width: 520px) {
  .gen-pavioid2 {
    grid-template-columns: 1fr;
  }
}

.gen-030bc5lb {
  font-family: Inter, sans-serif;
  color: #e8e8f0;
  background: #0a0a1a;
  padding: 60px 0;
  box-sizing: border-box;
}

.gen-030bc5lb .site-w1PP6K-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.gen-030bc5lb .site-w1PP6K-slot-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.gen-030bc5lb .site-w1PP6K-slot-img-wrap {
  flex: 0 0 auto;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(240, 192, 64, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 420px;
  width: 100%;
}

.gen-030bc5lb .site-w1PP6K-slot-img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(240, 192, 64, 0.32);
}

.gen-030bc5lb .site-w1PP6K-slot-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.gen-030bc5lb .site-w1PP6K-slot-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,10,26,0.88));
  padding: 18px 14px 12px;
  border-radius: 0 0 12px 12px;
}

.gen-030bc5lb .site-w1PP6K-slot-img-label {
  font-size: 13px;
  color: #f0c040;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.gen-030bc5lb .site-w1PP6K-content-block {
  flex: 1 1 320px;
  min-width: 280px;
}

.gen-030bc5lb .site-w1PP6K-content-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: #f0c040;
  margin: 0 0 18px 0;
  line-height: 1.2;
}

.gen-030bc5lb .site-w1PP6K-content-block > p {
  font-size: 15px;
  line-height: 1.7;
  color: #c8c8d8;
  margin: 0 0 14px 0;
}

.gen-030bc5lb .site-w1PP6K-content-block > p strong {
  color: #f0c040;
  font-weight: 600;
}

.gen-030bc5lb .site-w1PP6K-mechanics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.gen-030bc5lb .site-w1PP6K-mechanic-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(240,192,64,0.12);
  border-radius: 10px;
  padding: 14px 12px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gen-030bc5lb .site-w1PP6K-mechanic-item:hover {
  background: rgba(240,192,64,0.07);
  border-color: rgba(240,192,64,0.3);
}

.gen-030bc5lb .site-w1PP6K-mechanic-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.gen-030bc5lb .site-w1PP6K-mechanic-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: #f0c040;
  margin: 0 0 6px 0;
}

.gen-030bc5lb .site-w1PP6K-mechanic-text p {
  font-size: 13px;
  line-height: 1.55;
  color: #a8a8c0;
  margin: 0;
}

@media (max-width: 768px) {
  .gen-030bc5lb .site-w1PP6K-slot-visual {
    flex-direction: column;
  }
  .gen-030bc5lb .site-w1PP6K-slot-img-wrap {
    max-width: 100%;
  }
  .gen-030bc5lb .site-w1PP6K-mechanics-grid {
    grid-template-columns: 1fr;
  }
  .gen-030bc5lb .site-w1PP6K-content-block h2 {
    font-size: 22px;
  }
}

.gen-q365lwdp {
  font-family: Inter, sans-serif;
  color: rgb(232, 232, 240);
}

.gen-q365lwdp .gen-q365lwdp-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gen-q365lwdp .gen-q365lwdp-section {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gen-q365lwdp .gen-q365lwdp-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gen-q365lwdp .gen-q365lwdp-section:first-child {
  padding-top: 0;
}

.gen-q365lwdp .gen-q365lwdp-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gen-q365lwdp .gen-q365lwdp-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 15px;
  transition: background 0.2s;
}

.gen-q365lwdp .gen-q365lwdp-list li:hover {
  background: rgba(255, 255, 255, 0.08);
}

.gen-q365lwdp .gen-q365lwdp-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f5c842 0%, #e8a020 100%);
  color: #1a1200;
  font-weight: 700;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(245, 200, 66, 0.3);
}

.gen-5744d0ez {
  font-family: Inter, sans-serif;
  color: rgb(232, 232, 240);
  background: rgba(0,0,0,0);
  box-sizing: border-box;
}

.gen-5744d0ez .gen-5744d0ez-demo-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gen-5744d0ez .gen-5744d0ez-demo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(120, 80, 255, 0.25);
}

.gen-5744d0ez .gen-5744d0ez-demo-card:focus {
  outline: 2px solid rgba(120, 80, 255, 0.7);
  outline-offset: 3px;
}

.gen-5744d0ez ul {
  padding-left: 1.5em;
  margin: 0.75em 0;
}

.gen-5744d0ez ul li {
  margin-bottom: 0.4em;
  line-height: 1.6;
  list-style: disc;
  color: rgb(232, 232, 240);
}

.gen-5744d0ez h3 {
  color: rgb(232, 232, 240);
  margin-bottom: 0.5em;
}

.gen-5744d0ez p {
  line-height: 1.7;
  color: rgb(200, 200, 215);
}

.gen-gi2wxon6 {
  color: #e8e8f0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.gen-gi2wxon6 .gen-gi2wxon6__table-scroll {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.gen-gi2wxon6 .gen-gi2wxon6__rtp-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, rgba(30,20,60,0.95) 0%, rgba(20,10,45,0.98) 100%);
  border-radius: 12px;
  overflow: hidden;
}

.gen-gi2wxon6 .gen-gi2wxon6__rtp-table thead tr {
  background: linear-gradient(90deg, rgba(120,60,220,0.7) 0%, rgba(80,30,180,0.7) 100%);
}

.gen-gi2wxon6 .gen-gi2wxon6__rtp-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d4b8ff;
  border-bottom: 2px solid rgba(160,100,255,0.3);
}

.gen-gi2wxon6 .gen-gi2wxon6__rtp-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s ease;
}

.gen-gi2wxon6 .gen-gi2wxon6__rtp-table tbody tr:last-child {
  border-bottom: none;
}

.gen-gi2wxon6 .gen-gi2wxon6__rtp-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}

.gen-gi2wxon6 .gen-gi2wxon6__rtp-table tbody tr:hover {
  background: rgba(160,100,255,0.1);
}

.gen-gi2wxon6 .gen-gi2wxon6__rtp-table td {
  padding: 14px 20px;
  font-size: 15px;
  color: #c8c8d8;
  vertical-align: middle;
}

.gen-gi2wxon6 .gen-gi2wxon6__rtp-table td.gen-gi2wxon6__highlight {
  color: #f0d080;
  font-weight: 700;
  font-size: 15px;
}

.gen-gi2wxon6 .gen-gi2wxon6__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gen-gi2wxon6 .gen-gi2wxon6__badge--good {
  background: linear-gradient(135deg, rgba(50,200,100,0.25), rgba(30,160,80,0.35));
  color: #6ee89a;
  border: 1px solid rgba(80,200,120,0.4);
}

.gen-gi2wxon6 .gen-gi2wxon6__badge--high {
  background: linear-gradient(135deg, rgba(220,80,80,0.25), rgba(180,40,40,0.35));
  color: #ff8a8a;
  border: 1px solid rgba(220,80,80,0.4);
}

.gen-gi2wxon6 .gen-gi2wxon6__badge--med {
  background: linear-gradient(135deg, rgba(220,160,40,0.25), rgba(180,120,20,0.35));
  color: #ffd070;
  border: 1px solid rgba(220,160,40,0.4);
}

.gen-gi2wxon6 .gen-gi2wxon6__glass-card {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(30,20,60,0.9) 0%, rgba(20,10,45,0.95) 100%);
  border: 1px solid rgba(160,100,255,0.2);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.gen-gi2wxon6 .gen-gi2wxon6__glass-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #d4b8ff;
  margin: 0 0 14px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(160,100,255,0.2);
}

.gen-gi2wxon6 .gen-gi2wxon6__glass-card h3:not(:first-child) {
  margin-top: 28px;
}

.gen-gi2wxon6 .gen-gi2wxon6__glass-card p {
  margin: 0 0 16px 0;
  color: #b8b8cc;
  font-size: 15px;
  line-height: 1.75;
}

.gen-gi2wxon6 .gen-gi2wxon6__glass-card p:last-child {
  margin-bottom: 0;
}

.gen-gi2wxon6 .gen-gi2wxon6__glass-card strong {
  color: #e8d8ff;
  font-weight: 700;
}

.gen-xe1bfhw5 {
  font-family: Inter, sans-serif;
  color: rgb(232, 232, 240);
  box-sizing: border-box;
  padding: 2rem 1rem;
}

.gen-xe1bfhw5 .gen-xe1bfhw5-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.gen-xe1bfhw5 .gen-xe1bfhw5-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gen-xe1bfhw5 .gen-xe1bfhw5-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-2px);
}

.gen-xe1bfhw5 .gen-xe1bfhw5-emoji {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.gen-xe1bfhw5 .gen-xe1bfhw5-card h4 {
  margin: 0 0 0.35rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgb(232, 232, 240);
}

.gen-xe1bfhw5 .gen-xe1bfhw5-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(232, 232, 240, 0.75);
}

.gen-xe1bfhw5 .gen-xe1bfhw5-content-block {
  margin-top: 2rem;
}

.gen-xe1bfhw5 .gen-xe1bfhw5-glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem 2.5rem;
}

.gen-xe1bfhw5 .gen-xe1bfhw5-glass h3 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgb(232, 232, 240);
}

.gen-xe1bfhw5 .gen-xe1bfhw5-glass p {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(232, 232, 240, 0.85);
}

.gen-xe1bfhw5 .gen-xe1bfhw5-glass p:last-child {
  margin-bottom: 0;
}

.gen-xe1bfhw5 .gen-xe1bfhw5-glass strong {
  color: rgb(232, 232, 240);
  font-weight: 700;
}

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

@media (max-width: 520px) {
  .gen-xe1bfhw5 .gen-xe1bfhw5-grid {
    grid-template-columns: 1fr;
  }
  .gen-xe1bfhw5 .gen-xe1bfhw5-glass {
    padding: 1.25rem 1rem;
  }
}

.gen-lb80wl7i {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  padding: 16px 0;
  list-style: none;
  margin: 0;
}

.gen-lb80wl7i .gen-lb80wl7i-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: rgb(232, 232, 240);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  overflow: hidden;
}

.gen-lb80wl7i .gen-lb80wl7i-table thead tr {
  background: rgba(255,255,255,0.08);
}

.gen-lb80wl7i .gen-lb80wl7i-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(232,232,240,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gen-lb80wl7i .gen-lb80wl7i-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: middle;
}

.gen-lb80wl7i .gen-lb80wl7i-table tbody tr:last-child td {
  border-bottom: none;
}

.gen-lb80wl7i .gen-lb80wl7i-table tbody tr:hover {
  background: rgba(255,255,255,0.05);
  transition: background 0.2s ease;
}

.gen-lb80wl7i .gen-lb80wl7i-icon-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gen-lb80wl7i .gen-lb80wl7i-icon-cell svg {
  flex-shrink: 0;
  color: #a78bfa;
}

.gen-lb80wl7i .gen-lb80wl7i-icon-cell strong {
  color: rgb(232, 232, 240);
  font-weight: 600;
}

.gen-lb80wl7i .gen-lb80wl7i-desc {
  color: rgba(232,232,240,0.75);
  font-size: 14px;
  line-height: 1.5;
}

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

.gen-kvijb1z4 {
  color: rgb(232, 232, 240);
  font-family: Inter, sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

.gen-kvijb1z4 .gen-kvijb1z4-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.gen-kvijb1z4 .gen-kvijb1z4-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #a78bfa, #7c3aed);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.gen-kvijb1z4 .gen-kvijb1z4-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
  opacity: 0.8;
  line-height: 1.6;
}

.gen-kvijb1z4 .gen-kvijb1z4-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .gen-kvijb1z4 .gen-kvijb1z4-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gen-kvijb1z4 .gen-kvijb1z4-tips-grid {
    grid-template-columns: 1fr;
  }
}

.gen-kvijb1z4 .gen-kvijb1z4-tip-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s, background 0.3s;
}

.gen-kvijb1z4 .gen-kvijb1z4-tip-card:hover {
  background: rgba(167,139,250,0.1);
  border-color: rgba(167,139,250,0.5);
}

.gen-kvijb1z4 .gen-kvijb1z4-tip-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #a78bfa;
  min-width: 36px;
  line-height: 1;
}

.gen-kvijb1z4 .gen-kvijb1z4-tip-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #e8e8f0;
}

.gen-kvijb1z4 .gen-kvijb1z4-tip-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
}

.gen-kvijb1z4 .gen-kvijb1z4-glass-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: 16px;
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
}

.gen-kvijb1z4 .gen-kvijb1z4-glass-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #e8e8f0;
}

.gen-kvijb1z4 .gen-kvijb1z4-glass-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 16px;
  opacity: 0.85;
}

.gen-kvijb1z4 .gen-kvijb1z4-glass-card p:last-child {
  margin-bottom: 0;
}

.gen-kvijb1z4 .gen-kvijb1z4-glass-card strong {
  color: #c4b5fd;
  font-weight: 600;
}

.gen-tywp2pfq {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: rgb(232, 232, 240);
}

.gen-tywp2pfq .gen-tywp2pfq-pros,
.gen-tywp2pfq .gen-tywp2pfq-cons {
  flex: 1 1 300px;
  border-radius: 12px;
  padding: 24px;
  box-sizing: border-box;
}

.gen-tywp2pfq .gen-tywp2pfq-pros {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(16, 185, 129, 0.06));
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.gen-tywp2pfq .gen-tywp2pfq-cons {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(220, 38, 38, 0.06));
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.gen-tywp2pfq .gen-tywp2pfq-pros h3 {
  color: #4ade80;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.25);
  letter-spacing: 0.3px;
}

.gen-tywp2pfq .gen-tywp2pfq-cons h3 {
  color: #f87171;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(239, 68, 68, 0.25);
  letter-spacing: 0.3px;
}

.gen-tywp2pfq .site-w1PP6K-pros-list,
.gen-tywp2pfq .site-w1PP6K-cons-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gen-tywp2pfq .site-w1PP6K-pros-list li,
.gen-tywp2pfq .site-w1PP6K-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: rgb(210, 215, 230);
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.gen-tywp2pfq .site-w1PP6K-pros-list li:hover {
  background: rgba(34, 197, 94, 0.08);
}

.gen-tywp2pfq .site-w1PP6K-cons-list li:hover {
  background: rgba(239, 68, 68, 0.08);
}

.gen-tywp2pfq .site-w1PP6K-pros-list li::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gen-tywp2pfq .site-w1PP6K-cons-list li::before {
  content: '✗';
  color: #f87171;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gen-y6gc4wla {
  font-family: Inter, sans-serif;
  color: #e8e8f0;
  background: transparent;
  box-sizing: border-box;
  width: 100%;
  padding: 1.5rem;
}

.gen-y6gc4wla .gen-age-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.gen-y6gc4wla .gen-age-text {
  font-size: 1rem;
  color: var(--olympus-marble-dim, #a0a0b8);
  max-width: 500px;
  text-align: left;
  margin: 0;
  line-height: 1.6;
}

.gen-y6gc4wla .gen-age-strong {
  color: #f87171;
}

.gen-y6gc4wla .gen-legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}

.gen-y6gc4wla .gen-legal-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.gen-y6gc4wla .gen-legal-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.gen-y6gc4wla .gen-legal-item h4 {
  margin: 0 0 0.6rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e8e8f0;
  line-height: 1.4;
}

.gen-y6gc4wla .gen-legal-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--olympus-marble-dim, #a0a0b8);
  line-height: 1.6;
}

.gen-y6gc4wla .gen-legal-item strong {
  color: #e8e8f0;
}

@media (max-width: 900px) {
  .gen-y6gc4wla .gen-legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gen-y6gc4wla .gen-legal-grid {
    grid-template-columns: 1fr;
  }
  .gen-y6gc4wla .gen-age-row {
    flex-direction: column;
    text-align: center;
  }
  .gen-y6gc4wla .gen-age-text {
    text-align: center;
  }
}

.gen-eqlyi8tl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 0;
  background: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.gen-eqlyi8tl .gen-eqlyi8tl-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 12px 12px;
}

.gen-eqlyi8tl .site-w1PP6K-overlay-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 12px 12px;
}

._extracted-style-QQ-8 { width: 0%; }

._extracted-style-JY9P { left: 63.2343%; top: 39.3749%; height: 40.95px; opacity: 0.432715; animation-delay: 1.74081s; animation-duration: 3.28234s; }

._extracted-style-UnNH { left: 49.7184%; top: 77.6131%; height: 66.3271px; opacity: 0.511919; animation-delay: 3.33053s; animation-duration: 4.2305s; }

._extracted-style-oOl- { left: 32.3953%; top: 95.3149%; height: 35.7361px; opacity: 0.569011; animation-delay: 3.94178s; animation-duration: 3.2478s; }

._extracted-style-qsZn { left: 97.7637%; top: 62.5896%; height: 32.5195px; opacity: 0.535279; animation-delay: 0.347439s; animation-duration: 4.48994s; }

._extracted-style-QyLM { left: 83.8367%; top: 20.5124%; height: 33.6896px; opacity: 0.578646; animation-delay: 1.51201s; animation-duration: 3.97973s; }

._extracted-style-OKNQ { left: 70.0635%; top: 48.5742%; height: 75.2443px; opacity: 0.697089; animation-delay: 2.67412s; animation-duration: 4.7392s; }

._extracted-style-zM0k { left: 77.8492%; top: 83.4671%; height: 42.1605px; opacity: 0.326895; animation-delay: 3.91279s; animation-duration: 5.05694s; }

._extracted-style-i0fG { left: 32.1202%; top: 31.4093%; height: 37.6418px; opacity: 0.382941; animation-delay: 2.34773s; animation-duration: 4.79971s; }

._extracted-style-19Jm { left: 31.3483%; top: 79.0865%; height: 44.192px; opacity: 0.792562; animation-delay: 0.538806s; animation-duration: 3.88443s; }

._extracted-style-6Is0 { left: 97.7988%; top: 63.4887%; height: 32.8459px; opacity: 0.656313; animation-delay: 0.0574877s; animation-duration: 4.45383s; }

._extracted-style-ObdV { left: 12.8141%; top: 63.0913%; height: 67.3145px; opacity: 0.788977; animation-delay: 1.48155s; animation-duration: 3.541s; }

._extracted-style-gBda { left: 13.5132%; top: 21.3949%; height: 65.4414px; opacity: 0.622242; animation-delay: 0.320848s; animation-duration: 4.19098s; }

._extracted-style-UDbh { margin-top: var(--space-lg); }

._extracted-style-unMw { display:none }

._extracted-style-kfv9 { margin-top: var(--space-lg, 2rem); }

._extracted-style-cyFh { grid-column: 1 / -1; }

._extracted-style-sx2P { margin-top: var(--space-lg); }

._extracted-style-99RB { display: flex; flex-direction: column; gap: 1rem; align-items: center; }

._extracted-style-oAlF { font-size: 1.1rem; padding: 1.1rem 3rem; }

._extracted-style-uxR5 { margin-top: 0.75rem; font-size: 0.8rem; color: var(--olympus-muted); }