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

:root {
  --betsu-primary-color: #C61F1F;
  --betsu-secondary-color: #E53030;
  --betsu-card-bg: #2A1212;
  --betsu-bg: #140C0C;
  --betsu-text-main: #FFF1E8;
  --betsu-border: #6A1E1E;
  --betsu-gold: #F3C54D;
  --betsu-deep-red: #7E0D0D;
  --betsu-btn-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
}

.page-blog-betsu-new-player-guide {
  font-family: 'Arial', sans-serif;
  color: var(--betsu-text-main); /* Dark background, so light text */
  background-color: var(--betsu-bg); /* Ensure body background is honored by shared.css */
  line-height: 1.6;
}

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

.page-blog-betsu-new-player-guide__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

.page-blog-betsu-new-player-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative; /* Ensure content is above the image but not overlaying */
  z-index: 2;
}

.page-blog-betsu-new-player-guide__hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: var(--betsu-gold); /* Gold for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-betsu-new-player-guide__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--betsu-text-main);
}

.page-blog-betsu-new-player-guide__hero-cta-buttons,
.page-blog-betsu-new-player-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-betsu-new-player-guide__btn-primary,
.page-blog-betsu-new-player-guide__btn-secondary,
.page-blog-betsu-new-player-guide__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-betsu-new-player-guide__btn-primary {
  background: var(--betsu-btn-gradient);
  color: var(--betsu-text-main); /* Light text on gradient button */
  border: none;
}

.page-blog-betsu-new-player-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-betsu-new-player-guide__btn-secondary {
  background-color: transparent;
  color: var(--betsu-gold);
  border: 2px solid var(--betsu-gold);
}

.page-blog-betsu-new-player-guide__btn-secondary:hover {
  background-color: var(--betsu-gold);
  color: var(--betsu-bg);
  transform: translateY(-2px);
}

.page-blog-betsu-new-player-guide__btn-tertiary {
  background-color: var(--betsu-deep-red);
  color: var(--betsu-text-main);
  border: none;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-blog-betsu-new-player-guide__btn-tertiary:hover {
  background-color: var(--betsu-primary-color);
  transform: translateY(-1px);
}

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

.page-blog-betsu-new-player-guide__section--intro,
.page-blog-betsu-new-player-guide__section--games,
.page-blog-betsu-new-player-guide__section--bonuses,
.page-blog-betsu-new-player-guide__section--security {
  background-color: var(--betsu-bg);
}

.page-blog-betsu-new-player-guide__section--tips {
  background-color: #1a0f0f; /* Slightly lighter dark background for contrast */
}

.page-blog-betsu-new-player-guide__section--faq {
  background-color: var(--betsu-card-bg);
}

.page-blog-betsu-new-player-guide__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--betsu-gold);
  margin-bottom: 20px;
}

.page-blog-betsu-new-player-guide__section-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--betsu-text-main);
}

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

.page-blog-betsu-new-player-guide__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-betsu-new-player-guide__card {
  background-color: var(--betsu-card-bg);
  border: 1px solid var(--betsu-border);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--betsu-text-main);
}

.page-blog-betsu-new-player-guide__card-title {
  font-size: 1.5rem;
  color: var(--betsu-gold);
  margin-bottom: 15px;
}

.page-blog-betsu-new-player-guide__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-betsu-new-player-guide__card-text {
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-betsu-new-player-guide__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-betsu-new-player-guide__list-item {
  background-color: var(--betsu-card-bg);
  border: 1px solid var(--betsu-border);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  text-align: left;
}

.page-blog-betsu-new-player-guide__list-title {
  font-size: 1.4rem;
  color: var(--betsu-gold);
  margin-bottom: 10px;
}

.page-blog-betsu-new-player-guide__list-text {
  font-size: 1rem;
  color: var(--betsu-text-main);
}

.page-blog-betsu-new-player-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-blog-betsu-new-player-guide__faq-item {
  background-color: var(--betsu-bg);
  border: 1px solid var(--betsu-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--betsu-text-main);
}

.page-blog-betsu-new-player-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--betsu-gold);
  background-color: var(--betsu-deep-red); /* Darker background for question */
  user-select: none;
  list-style: none;
}

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

.page-blog-betsu-new-player-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-betsu-new-player-guide__faq-item[open] .page-blog-betsu-new-player-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-betsu-new-player-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--betsu-text-main);
  background-color: var(--betsu-card-bg);
}

.page-blog-betsu-new-player-guide__faq-answer p {
  margin: 0;
}

.page-blog-betsu-new-player-guide__section--cta-final {
  background-color: var(--betsu-primary-color);
  padding: 80px 20px;
  color: var(--betsu-text-main);
}

.page-blog-betsu-new-player-guide__section--cta-final .page-blog-betsu-new-player-guide__section-title {
  color: var(--betsu-text-main);
}

.page-blog-betsu-new-player-guide__section--cta-final .page-blog-betsu-new-player-guide__section-description {
  color: var(--betsu-text-main);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-betsu-new-player-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-betsu-new-player-guide__hero-image-wrapper {
    max-height: 300px;
  }

  .page-blog-betsu-new-player-guide__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-betsu-new-player-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-betsu-new-player-guide__hero-cta-buttons,
  .page-blog-betsu-new-player-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-betsu-new-player-guide__btn-primary,
  .page-blog-betsu-new-player-guide__btn-secondary,
  .page-blog-betsu-new-player-guide__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-betsu-new-player-guide__section {
    padding: 40px 0;
  }

  .page-blog-betsu-new-player-guide__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-blog-betsu-new-player-guide__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-blog-betsu-new-player-guide__content-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-betsu-new-player-guide__card {
    padding: 20px;
  }

  .page-blog-betsu-new-player-guide__card-title {
    font-size: 1.3rem;
  }

  .page-blog-betsu-new-player-guide__card-image {
    max-height: 200px;
  }

  .page-blog-betsu-new-player-guide__list-item {
    padding: 20px;
  }

  .page-blog-betsu-new-player-guide__list-title {
    font-size: 1.2rem;
  }

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

  .page-blog-betsu-new-player-guide__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile image responsiveness */
  .page-blog-betsu-new-player-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-betsu-new-player-guide__section,
  .page-blog-betsu-new-player-guide__card,
  .page-blog-betsu-new-player-guide__container,
  .page-blog-betsu-new-player-guide__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure content doesn't overflow */
  }

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