.page-newbie-guide-first-game-start {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1A2C42; /* Main dark background */
}

.page-newbie-guide-first-game-start__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-newbie-guide-first-game-start__hero {
  background: linear-gradient(135deg, #1A2C42 0%, #3a506b 100%);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-newbie-guide-first-game-start__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B147; /* Secondary color for highlight */
  font-weight: 700;
  line-height: 1.2;
}

.page-newbie-guide-first-game-start__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-newbie-guide-first-game-start__hero-btn {
  display: inline-block;
  background-color: #E0B147; /* Secondary color for CTA */
  color: #1A2C42; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-newbie-guide-first-game-start__hero-btn:hover {
  background-color: #f7d27e; /* Lighter secondary on hover */
  transform: translateY(-3px);
}

.page-newbie-guide-first-game-start__section-title {
  font-size: 2.5em;
  color: #E0B147; /* Secondary color for section titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  position: relative;
}

.page-newbie-guide-first-game-start__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B147;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-newbie-guide-first-game-start__intro-section,
.page-newbie-guide-first-game-start__steps-section,
.page-newbie-guide-first-game-start__tips-section,
.page-newbie-guide-first-game-start__responsibility-section,
.page-newbie-guide-first-game-start__cta-section {
  padding: 60px 0;
  background-color: #243a52; /* Slightly lighter dark background */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-first-game-start__intro-section p,
.page-newbie-guide-first-game-start__tips-section p,
.page-newbie-guide-first-game-start__responsibility-section p,
.page-newbie-guide-first-game-start__cta-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #d0d0d0;
}

.page-newbie-guide-first-game-start__steps-section {
  background-color: #1A2C42;
}

.page-newbie-guide-first-game-start__step-card {
  background-color: #2b4059; /* Card background */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-newbie-guide-first-game-start__step-card:hover {
  transform: translateY(-5px);
}

.page-newbie-guide-first-game-start__step-title {
  font-size: 1.8em;
  color: #E0B147; /* Secondary color for step titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-newbie-guide-first-game-start__step-card p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-newbie-guide-first-game-start__step-btn,
.page-newbie-guide-first-game-start__responsibility-btn,
.page-newbie-guide-first-game-start__cta-btn {
  display: inline-block;
  background-color: #E0B147;
  color: #1A2C42;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-newbie-guide-first-game-start__step-btn:hover,
.page-newbie-guide-first-game-start__responsibility-btn:hover,
.page-newbie-guide-first-game-start__cta-btn:hover {
  background-color: #f7d27e;
  transform: translateY(-2px);
}

.page-newbie-guide-first-game-start__tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-newbie-guide-first-game-start__tip-list li {
  background-color: #2b4059;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #e0e0e0;
  border-left: 5px solid #E0B147;
}

.page-newbie-guide-first-game-start__tip-list li strong {
  color: #E0B147;
}

.page-newbie-guide-first-game-start__responsibility-section {
  background-color: #243a52;
  text-align: center;
}

.page-newbie-guide-first-game-start__responsibility-section p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-newbie-guide-first-game-start__cta-section {
  text-align: center;
  background-color: #1A2C42;
  border-top: 5px solid #E0B147;
}

.page-newbie-guide-first-game-start__cta-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-newbie-guide-first-game-start__cta-note {
  font-style: italic;
  margin-top: 30px;
  color: #a0a0a0;
}

.page-newbie-guide-first-game-start__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-newbie-guide-first-game-start__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-newbie-guide-first-game-start__hero-title {
    font-size: 2.5em;
  }

  .page-newbie-guide-first-game-start__hero-subtitle {
    font-size: 1.2em;
  }

  .page-newbie-guide-first-game-start__section-title {
    font-size: 2em;
  }

  .page-newbie-guide-first-game-start__step-title {
    font-size: 1.5em;
  }

  .page-newbie-guide-first-game-start__hero,
  .page-newbie-guide-first-game-start__intro-section,
  .page-newbie-guide-first-game-start__steps-section,
  .page-newbie-guide-first-game-start__tips-section,
  .page-newbie-guide-first-game-start__responsibility-section,
  .page-newbie-guide-first-game-start__cta-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-newbie-guide-first-game-start__hero-title {
    font-size: 2em;
  }

  .page-newbie-guide-first-game-start__hero-subtitle {
    font-size: 1em;
  }

  .page-newbie-guide-first-game-start__hero-btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-newbie-guide-first-game-start__section-title {
    font-size: 1.8em;
  }

  .page-newbie-guide-first-game-start__step-title {
    font-size: 1.3em;
  }

  .page-newbie-guide-first-game-start__step-card {
    padding: 20px;
  }
}