.page-newbie-guide {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-newbie-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  overflow: hidden;
}

.page-newbie-guide__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-newbie-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-newbie-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: 20px; /* Space between image and content */
}

.page-newbie-guide__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-newbie-guide__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-newbie-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-newbie-guide__btn-primary,
.page-newbie-guide__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.page-newbie-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.page-newbie-guide__btn-secondary {
  background-color: transparent;
  color: #F2FFF6;
  border: 2px solid #2E7A4E; /* Border */
}

.page-newbie-guide__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Slightly lighter border color with transparency */
  transform: translateY(-2px);
}

.page-newbie-guide__btn-center {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 300px;
}

.page-newbie-guide__section {
  padding: 60px 20px;
  background-color: #0A4B2C; /* Deep Green */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide__section:nth-child(even) {
  background-color: #11271B; /* Card BG */
}

.page-newbie-guide__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-newbie-guide__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
}

.page-newbie-guide__text-block {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-newbie-guide__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-newbie-guide__step-list,
.page-newbie-guide__promo-list,
.page-newbie-guide__tips-list,
.page-newbie-guide__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-newbie-guide__step-item,
.page-newbie-guide__promo-item,
.page-newbie-guide__tips-item,
.page-newbie-guide__contact-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-newbie-guide__step-title,
.page-newbie-guide__promo-title,
.page-newbie-guide__tips-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-newbie-guide__step-description,
.page-newbie-guide__promo-description,
.page-newbie-guide__tips-description,
.page-newbie-guide__contact-item {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-newbie-guide__sub-list {
  list-style: disc;
  margin-left: 20px;
  color: #A7D9B8;
}

.page-newbie-guide__sub-list li {
  margin-bottom: 5px;
}

.page-newbie-guide__download-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-newbie-guide__download-card {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.page-newbie-guide__download-qr {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-newbie-guide__download-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-newbie-guide__download-description {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
}

.page-newbie-guide__note-text {
  text-align: center;
  font-style: italic;
  margin-top: 30px;
  font-size: 0.95em;
  color: #A7D9B8;
}

.page-newbie-guide__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-newbie-guide__game-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-newbie-guide__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-newbie-guide__game-title {
  font-size: 1.6em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-newbie-guide__game-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-newbie-guide__game-card .page-newbie-guide__btn-secondary {
  margin: 0 15px 20px 15px;
  display: block;
}

.page-newbie-guide__faq-list {
  margin-top: 30px;
}

.page-newbie-guide__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-newbie-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none; /* For details/summary */
}

.page-newbie-guide__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-newbie-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #F2C14E; /* Gold */
  transition: transform 0.3s ease;
}

.page-newbie-guide__faq-item[open] .page-newbie-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-newbie-guide__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-newbie-guide__faq-answer p {
  margin-bottom: 0;
}

.page-newbie-guide__faq-answer a {
  color: #2AD16F; /* Button primary start color */
  text-decoration: underline;
}

.page-newbie-guide__faq-answer a:hover {
  color: #13994A; /* Button primary end color */
}

.page-newbie-guide__conclusion-section {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-newbie-guide__section-title {
    font-size: 2em;
  }
  .page-newbie-guide__game-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-newbie-guide__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-newbie-guide__hero-content {
    padding: 15px;
  }
  .page-newbie-guide__main-title {
    font-size: 2.5em;
  }
  .page-newbie-guide__hero-description {
    font-size: 1em;
  }
  .page-newbie-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-newbie-guide__btn-primary,
  .page-newbie-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
  }
  .page-newbie-guide__section {
    padding: 40px 15px;
  }
  .page-newbie-guide__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-newbie-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-newbie-guide__text-block {
    font-size: 0.95em;
  }
  .page-newbie-guide__image {
    margin: 20px auto;
  }
  .page-newbie-guide__download-options {
    flex-direction: column;
    gap: 20px;
  }
  .page-newbie-guide__download-card {
    max-width: 100%;
  }
  .page-newbie-guide__game-categories {
    grid-template-columns: 1fr;
  }
  .page-newbie-guide__game-image {
    height: 160px;
  }
  .page-newbie-guide__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-newbie-guide__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-newbie-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-newbie-guide__video-section {
    padding-top: 10px !important;
  }
  .page-newbie-guide__video-container,
  .page-newbie-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-newbie-guide video,
  .page-newbie-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .page-newbie-guide__main-title {
    font-size: 2em;
  }
  .page-newbie-guide__section-title {
    font-size: 1.5em;
  }
  .page-newbie-guide__step-title,
  .page-newbie-guide__promo-title,
  .page-newbie-guide__tips-title,
  .page-newbie-guide__game-title {
    font-size: 1.3em;
  }
  .page-newbie-guide__faq-question {
    font-size: 1em;
  }
  .page-newbie-guide__download-qr {
    width: 150px;
    height: 150px;
  }
}