/* TotalBestSpin - How To Play Page Styles */
.howto-hero-section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-10);
  text-align: center;
}
.howto-title {
  margin-top: var(--space-2);
  margin-bottom: var(--space-3);
}
.howto-intro {
  color: var(--color-neutral-100);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-7);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.howto-steps-section {
  padding-bottom: var(--space-16);
}
.howto-steps-list {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin-top: var(--space-8);
}
.howto-step-card {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  background: linear-gradient(114deg, rgba(18,13,32,0.93) 60%, rgba(212,175,55,0.07));
  border-left: 6px solid var(--color-primary);
  border-radius: var(--radius-lg);
  min-height: 200px;
}
.howto-step-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #312b52 60%, #e3c873 100%);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.howto-step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.howto-step-content {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step-title {
  font-family: var(--font-family-accent);
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.step-number {
  font-size: var(--font-size-lg);
  font-family: var(--font-family-accent);
  background: var(--color-primary);
  color: var(--color-bg);
  border-radius: 50%;
  padding: 0.35em 0.7em;
  font-weight: 700;
  display: inline-block;
  margin-right: var(--space-3);
}
.tips-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-4);
}
.tip-icon {
  color: var(--color-primary);
  font-size: 1em;
  margin-right: 0.5em;
}
.step-cta {
  margin-top: var(--space-3);
  align-self: flex-start;
  font-size: var(--font-size-base);
  padding: var(--space-2) var(--space-5);
}
@media (max-width: 900px) {
  .howto-steps-list {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .howto-steps-section {
    padding-bottom: var(--space-10);
  }
  .howto-hero-section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-6);
  }
}
@media (max-width: 600px) {
  .howto-step-card {
    flex-direction: column;
    min-height: 0;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-3);
  }
  .howto-step-icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-2);
  }
  .step-title {
    justify-content: center;
    font-size: var(--font-size-lg);
  }
  .howto-steps-list {
    gap: var(--space-5);
    margin-top: var(--space-3);
  }
  .howto-intro {
    font-size: var(--font-size-base);
  }
  .howto-hero-section {
    padding-top: var(--space-6);
    padding-bottom: var(--space-4);
  }
}
