.howtoplay-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0D1230 0%, var(--dark-bg) 100%);
  position: relative;
}

.howtoplay-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.howtoplay-header {
  text-align: center;
  margin-bottom: 70px;
}

.howtoplay-title {
  font-size: 48px;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.howtoplay-subtitle {
  font-size: 18px;
  color: var(--text-gray);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.step-card {
  background: var(--dark-card);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(108, 99, 255, 0.2);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.step-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 15px;
  color: var(--text-light);
}

.step-description {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 50px auto 0;
  }
}

@media (max-width: 768px) {
  .howtoplay-section {
    padding: 60px 0;
  }

  .howtoplay-title {
    font-size: 36px;
  }

  .howtoplay-subtitle {
    font-size: 16px;
  }

  .step-card {
    padding: 35px 25px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .step-icon {
    font-size: 42px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-description {
    font-size: 14px;
  }
}
