.page-new-user-guide {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A202C; /* Dark Grey */
  --text-light: #ffffff;
  --text-dark: #1A202C;
  --background-light: #f5f5f5;
  --background-dark: #2d3748;
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.page-new-user-guide .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-new-user-guide section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-new-user-guide section:nth-of-type(even) {
  background-color: var(--background-light);
}

.page-new-user-guide h1,
.page-new-user-guide h2,
.page-new-user-guide h3 {
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-new-user-guide h1 {
  font-size: 2.8em;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-new-user-guide h2 {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-new-user-guide h3 {
  font-size: 1.6em;
  color: var(--secondary-color);
}

.page-new-user-guide p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-new-user-guide ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-new-user-guide ol {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-new-user-guide li {
  margin-bottom: 8px;
}

.page-new-user-guide .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--primary-color);
}

.page-new-user-guide .cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  color: var(--secondary-color);
}

.page-new-user-guide .button-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 1px solid var(--secondary-color);
}

.page-new-user-guide .button-small:hover {
  background: #0f131a;
  color: var(--primary-color);
  transform: translateY(-1px);
}

.page-new-user-guide .button-link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
  font-size: 0.95em;
}

.page-new-user-guide .button-link:hover {
  background-color: #e6c200;
  color: var(--secondary-color);
}

/* Hero Section */
.page-new-user-guide .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px;
  background-color: var(--secondary-color);
  overflow: hidden;
}

.page-new-user-guide .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-new-user-guide .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-new-user-guide .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-new-user-guide .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
}

.page-new-user-guide .hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 20px;
  color: #e0e0e0;
}

/* Feature Grid */
.page-new-user-guide .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-new-user-guide .feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-new-user-guide .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-new-user-guide .feature-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-new-user-guide .feature-item p {
  color: var(--secondary-color);
}

/* Step-by-step Guide */
.page-new-user-guide .step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-new-user-guide .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-new-user-guide .step-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-new-user-guide .step-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Transaction Section */
.page-new-user-guide .transaction-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-new-user-guide .transaction-guide {
  flex: 1;
  min-width: 300px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-new-user-guide .transaction-guide h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-new-user-guide .transaction-content img {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Game Categories */
.page-new-user-guide .game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-new-user-guide .game-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-new-user-guide .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-new-user-guide .game-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-new-user-guide .game-card h3 {
  color: var(--secondary-color);
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-new-user-guide .game-card p {
  flex-grow: 1;
  font-size: 0.95em;
  color: #555;
}

/* Promotions */
.page-new-user-guide .promotion-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  align-items: start;
}

.page-new-user-guide .promo-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-new-user-guide .promo-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-new-user-guide .promotion-list img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  grid-column: 1 / -1;
  margin-top: 30px;
}

/* FAQ Section */
.page-new-user-guide .faq-list {
  margin-top: 40px;
}

.page-new-user-guide .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-new-user-guide .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-new-user-guide .faq-question:hover {
  background: #f5f5f5;
}

.page-new-user-guide .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--secondary-color);
}

.page-new-user-guide .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-new-user-guide .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-new-user-guide .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: var(--secondary-color);
}

.page-new-user-guide .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

.page-new-user-guide .faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
}

/* Customer Support Section */
.page-new-user-guide .section-customer-support {
  background-color: var(--secondary-color);
  color: var(--text-light);
  text-align: center;
}

.page-new-user-guide .section-customer-support h2 {
  color: var(--primary-color);
}

.page-new-user-guide .section-customer-support p {
  color: #e0e0e0;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 20px;
}

.page-new-user-guide .section-customer-support ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 600px;
}

.page-new-user-guide .section-customer-support li {
  background-color: #3a475a;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Conclusion Section */
.page-new-user-guide .section-conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-new-user-guide .section-conclusion h2 {
  color: var(--secondary-color);
}

.page-new-user-guide .section-conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-new-user-guide h1 {
    font-size: 2.2em;
  }
  .page-new-user-guide h2 {
    font-size: 1.8em;
  }
  .page-new-user-guide h3 {
    font-size: 1.3em;
  }
  .page-new-user-guide .hero-section {
    padding: 60px 15px 40px;
  }
  .page-new-user-guide .hero-content p {
    font-size: 1.1em;
  }
  .page-new-user-guide .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-new-user-guide .transaction-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-new-user-guide .transaction-content img {
    max-width: 100%;
  }
  .page-new-user-guide .promotion-list {
    grid-template-columns: 1fr;
  }
  .page-new-user-guide .promotion-list img {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .page-new-user-guide h1 {
    font-size: 1.8em;
  }
  .page-new-user-guide h2 {
    font-size: 1.6em;
  }
  .page-new-user-guide h3 {
    font-size: 1.2em;
  }
  .page-new-user-guide section {
    padding: 40px 0;
  }
  .page-new-user-guide .container {
    padding: 0 15px;
  }
  .page-new-user-guide .feature-item,
  .page-new-user-guide .step-item,
  .page-new-user-guide .game-card,
  .page-new-user-guide .promo-item {
    padding: 20px;
  }
  .page-new-user-guide .faq-question {
    padding: 15px 20px;
  }
  .page-new-user-guide .faq-question h3 {
    font-size: 1.1em;
  }
  .page-new-user-guide .faq-toggle {
    font-size: 20px;
  }
  .page-new-user-guide .faq-answer {
    padding: 0 20px;
  }
  .page-new-user-guide .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-new-user-guide .section-customer-support li {
    font-size: 1em;
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-new-user-guide h1 {
    font-size: 1.5em;
  }
  .page-new-user-guide h2 {
    font-size: 1.4em;
  }
  .page-new-user-guide .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-new-user-guide .hero-content p {
    font-size: 1em;
  }
  .page-new-user-guide p {
    font-size: 1em;
  }
}