/* ========================================
   YSB66 Page-Specific Styles
   Minimal overrides only
   ======================================== */

/* Home page specific */
.home-hero {
  background: linear-gradient(135deg, var(--ysb-accent) 0%, var(--ysb-primary) 100%);
  color: var(--ysb-white);
  padding: var(--space-2xl) 0;
}

.home-hero h1,
.home-hero p {
  color: var(--ysb-white);
}

/* Slot review page specific */
.slot-hero {
  text-align: center;
  padding: var(--space-xl) 0;
}

.slot-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .slot-hero-content {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.slot-hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slot-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.slot-hero-info {
  background-color: var(--ysb-white);
  padding: var(--space-lg);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ysb-border);
}

.slot-hero-info h2 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
  color: var(--ysb-text);
}

.slot-highlights {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.slot-highlights li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--ysb-border);
  color: var(--ysb-text);
}

.slot-highlights li:last-child {
  border-bottom: none;
}

.slot-highlights strong {
  color: var(--ysb-primary);
  margin-right: var(--space-xs);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.fact-item {
  background-color: var(--ysb-white);
  padding: var(--space-md);
  border-radius: 8px;
  border: 1px solid var(--ysb-border);
  text-align: center;
}

.fact-label {
  font-size: var(--font-size-xs);
  color: var(--ysb-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-xs);
}

.fact-value {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--ysb-primary);
}

/* How to Play steps */
.how-to-play {
  counter-reset: step-counter;
}

.step {
  counter-increment: step-counter;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
  position: relative;
}

.step::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background-color: var(--ysb-primary);
  color: var(--ysb-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-base);
}

.step-title {
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--ysb-text);
}

.step-text {
  color: var(--ysb-muted);
}

/* Athlete profile specific */
.athlete-hero {
  text-align: center;
  padding: var(--space-xl) 0;
}

.athlete-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto var(--space-lg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.snapshot-card {
  background-color: var(--ysb-white);
  padding: var(--space-md);
  border-radius: 8px;
  border: 1px solid var(--ysb-border);
}

.snapshot-label {
  font-size: var(--font-size-xs);
  color: var(--ysb-muted);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.snapshot-value {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--ysb-text);
}

.timeline {
  margin: var(--space-xl) 0;
}

.timeline-item {
  padding-left: var(--space-xl);
  border-left: 2px solid var(--ysb-border);
  margin-bottom: var(--space-lg);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--ysb-gold);
  border-radius: 50%;
}

.timeline-year {
  font-weight: 700;
  color: var(--ysb-gold-dark);
  margin-bottom: var(--space-xs);
}

.timeline-event {
  color: var(--ysb-text);
}

/* Live casino editorial style */
.editorial-section {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

.editorial-section h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-lg);
}

.editorial-section p {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* Promotions banner grid */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

/* SEO content blocks */
.seo-content {
  max-width: 900px;
  margin: var(--space-xl) auto;
  padding: var(--space-xl);
  background-color: var(--ysb-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.seo-content h2 {
  color: var(--ysb-primary);
  margin-bottom: var(--space-md);
}

.seo-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}
