/* style/blog-new-player-guide.css */

:root {
  --df999-primary-color: #11A84E;
  --df999-secondary-color: #22C768;
  --df999-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --df999-card-bg: #11271B;
  --df999-background: #08160F;
  --df999-text-main: #F2FFF6;
  --df999-text-secondary: #A7D9B8;
  --df999-border-color: #2E7A4E;
  --df999-glow-color: #57E38D;
  --df999-gold-color: #F2C14E;
  --df999-divider-color: #1E3A2A;
  --df999-deep-green: #0A4B2C;
}

/* Base styles for the page */
.page-blog-new-player-guide {
  font-family: Arial, sans-serif;
  color: var(--df999-text-main); /* Default text color for the page */
  background-color: var(--df999-background); /* Main background color */
  line-height: 1.6;
  overflow-x: hidden;
}

.page-blog-new-player-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-new-player-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-new-player-guide__section-title {
  font-size: 2.8em;
  color: var(--df999-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-new-player-guide__section-description {
  font-size: 1.1em;
  color: var(--df999-text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-new-player-guide__text-center {
  text-align: center;
}

/* Hero Section */
.page-blog-new-player-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--df999-deep-green);
  overflow: hidden;
}

.page-blog-new-player-guide__hero-image-wrapper {
  width: 100%;
  max-height: 70vh; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-blog-new-player-guide__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 40px; /* Space between image and text */
  text-align: center;
}

.page-blog-new-player-guide__main-title {
  font-size: clamp(2em, 4.5vw, 3.5em); /* Responsive H1 font size */
  color: var(--df999-gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-blog-new-player-guide__description {
  font-size: 1.2em;
  color: var(--df999-text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-blog-new-player-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-new-player-guide__btn-primary {
  background: var(--df999-button-gradient);
  color: var(--df999-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-new-player-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-blog-new-player-guide__btn-secondary {
  background: none;
  color: var(--df999-primary-color);
  border: 2px solid var(--df999-primary-color);
  margin-left: 15px;
}

.page-blog-new-player-guide__btn-secondary:hover {
  background-color: rgba(17, 168, 78, 0.1);
  color: var(--df999-text-main);
  transform: translateY(-2px);
}

/* Cards */
.page-blog-new-player-guide__card {
  background-color: var(--df999-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid var(--df999-border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-new-player-guide__card-title {
  font-size: 1.5em;
  color: var(--df999-text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-new-player-guide__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog-new-player-guide__card-title a:hover {
  color: var(--df999-gold-color);
}

.page-blog-new-player-guide__card-text {
  font-size: 1em;
  color: var(--df999-text-secondary);
  line-height: 1.7;
}

/* Why Choose Us Section */
.page-blog-new-player-guide__why-choose-us {
  background-color: var(--df999-deep-green);
}

.page-blog-new-player-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-new-player-guide__feature-icon {
  width: 100%;
  height: auto;
  max-width: 150px;
  margin-bottom: 20px;
  object-fit: contain;
}

/* Registration Guide Section */
.page-blog-new-player-guide__registration-guide {
  background-color: var(--df999-background);
}

.page-blog-new-player-guide__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-new-player-guide__step-card .page-blog-new-player-guide__card-title {
  color: var(--df999-gold-color);
}

.page-blog-new-player-guide__process-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--df999-border-color);
}

/* Deposit Guide Section */
.page-blog-new-player-guide__deposit-guide {
  background-color: var(--df999-deep-green);
}

.page-blog-new-player-guide__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-new-player-guide__payment-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--df999-border-color);
}

/* Game Exploration Section */
.page-blog-new-player-guide__game-exploration {
  background-color: var(--df999-background);
}

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

.page-blog-new-player-guide__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid var(--df999-border-color);
}

/* Promotions Section */
.page-blog-new-player-guide__promotions {
  background-color: var(--df999-deep-green);
}

.page-blog-new-player-guide__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-new-player-guide__promo-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid var(--df999-border-color);
}

/* Strategies Section */
.page-blog-new-player-guide__strategies {
  background-color: var(--df999-background);
}

.page-blog-new-player-guide__strategy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-new-player-guide__strategy-item {
  text-align: left;
  padding: 25px;
}

.page-blog-new-player-guide__strategy-item .page-blog-new-player-guide__card-title {
  font-size: 1.3em;
  color: var(--df999-primary-color);
}

/* Support Section */
.page-blog-new-player-guide__support {
  background-color: var(--df999-deep-green);
}

.page-blog-new-player-guide__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* FAQ Section */
.page-blog-new-player-guide__faq {
  background-color: var(--df999-background);
}

.page-blog-new-player-guide__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-blog-new-player-guide__faq-item {
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.page-blog-new-player-guide__faq-item[open] {
  padding-bottom: 20px;
}

.page-blog-new-player-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--df999-text-main);
  background-color: var(--df999-card-bg);
  border-radius: 12px;
  border: 1px solid var(--df999-border-color);
  list-style: none;
  user-select: none; /* Prevent text selection on click */
}

.page-blog-new-player-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-new-player-guide__faq-question:hover {
  background-color: var(--df999-deep-green);
}

.page-blog-new-player-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--df999-gold-color);
  margin-left: 15px;
}

.page-blog-new-player-guide__faq-answer {
  padding: 15px 25px 0 25px;
  font-size: 1em;
  color: var(--df999-text-secondary);
  line-height: 1.7;
}

/* Conclusion Section */
.page-blog-new-player-guide__conclusion {
  background-color: var(--df999-primary-color);
  padding: 80px 0;
}

.page-blog-new-player-guide__conclusion .page-blog-new-player-guide__section-title {
  color: var(--df999-text-main);
}

.page-blog-new-player-guide__conclusion .page-blog-new-player-guide__section-description {
  color: var(--df999-text-main);
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-new-player-guide__section-title {
    font-size: 2.2em;
  }

  .page-blog-new-player-guide__description {
    font-size: 1.1em;
  }

  .page-blog-new-player-guide__hero-section {
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .page-blog-new-player-guide__section {
    padding: 40px 0;
  }

  .page-blog-new-player-guide__section-title {
    font-size: 1.8em;
    padding: 0 15px;
  }

  .page-blog-new-player-guide__section-description {
    font-size: 1em;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .page-blog-new-player-guide__hero-section {
    padding-top: 10px !important; /* body already handles header offset */
    padding-bottom: 30px;
  }

  .page-blog-new-player-guide__hero-content {
    padding: 20px 15px;
    margin-top: 20px;
  }

  .page-blog-new-player-guide__main-title {
    font-size: 2em;
  }

  .page-blog-new-player-guide__description {
    font-size: 0.95em;
  }

  .page-blog-new-player-guide__cta-button {
    padding: 12px 20px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 15px;
  }

  .page-blog-new-player-guide__btn-secondary {
    margin-left: 0;
  }

  .page-blog-new-player-guide__features-grid,
  .page-blog-new-player-guide__steps-container,
  .page-blog-new-player-guide__methods-grid,
  .page-blog-new-player-guide__game-categories,
  .page-blog-new-player-guide__promo-grid,
  .page-blog-new-player-guide__strategy-list,
  .page-blog-new-player-guide__contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  /* Image responsive adaptation */
  .page-blog-new-player-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-new-player-guide__section,
  .page-blog-new-player-guide__card,
  .page-blog-new-player-guide__container,
  .page-blog-new-player-guide__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-blog-new-player-guide__hero-section .page-blog-new-player-guide__hero-image-wrapper {
    padding: 0;
  }

  .page-blog-new-player-guide__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-new-player-guide__faq-answer {
    padding: 10px 20px 0 20px;
  }

  .page-blog-new-player-guide__faq-item[open] {
    padding-bottom: 15px;
  }
}

/* Ensure images within content areas are at least 200px wide */
.page-blog-new-player-guide__process-image,
.page-blog-new-player-guide__payment-image,
.page-blog-new-player-guide__feature-icon,
.page-blog-new-player-guide__category-image,
.page-blog-new-player-guide__promo-image {
  min-width: 200px;
  min-height: 200px;
}

/* Specific button group styling for mobile if needed */
.page-blog-new-player-guide__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-new-player-guide__cta-button:last-child {
  margin-bottom: 0; /* Remove bottom margin for the last button */
}

.page-blog-new-player-guide__card img {
  border-radius: 8px;
}