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

.page-beginner-guide-first-bet__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-beginner-guide-first-bet__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles top padding */
  text-align: center;
  overflow: hidden;
}

.page-beginner-guide-first-bet__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-beginner-guide-first-bet__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-beginner-guide-first-bet__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for visual flow */
  background-color: #08160F; /* Ensure text is readable on top of image */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  position: relative; /* Ensure it's above other elements */
  z-index: 10;
}

.page-beginner-guide-first-bet__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-beginner-guide-first-bet__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-beginner-guide-first-bet__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-beginner-guide-first-bet__btn-primary,
.page-beginner-guide-first-bet__btn-secondary,
.page-beginner-guide-first-bet__link-button {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-beginner-guide-first-bet__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-beginner-guide-first-bet__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-beginner-guide-first-bet__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-beginner-guide-first-bet__btn-secondary:hover {
  background-color: #2AD16F;
  color: #08160F;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-beginner-guide-first-bet__link-button {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  margin-top: 20px;
}

.page-beginner-guide-first-bet__link-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-beginner-guide-first-bet__link-button--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.page-beginner-guide-first-bet__section {
  padding: 80px 0;
}

.page-beginner-guide-first-bet__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-beginner-guide-first-bet__section-subtitle {
  font-size: 1.1em;
  color: #A7D9B8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-first-bet__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-beginner-guide-first-bet__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-beginner-guide-first-bet__text-block {
  flex: 1;
}

.page-beginner-guide-first-bet__text-block p {
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-beginner-guide-first-bet__text-block ul,
.page-beginner-guide-first-bet__text-block ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-beginner-guide-first-bet__text-block li {
  margin-bottom: 8px;
  color: #F2FFF6;
}

.page-beginner-guide-first-bet__text-block strong {
  color: #2AD16F;
}

.page-beginner-guide-first-bet__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-beginner-guide-first-bet__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: block;
}

.page-beginner-guide-first-bet__sub-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-beginner-guide-first-bet__dark-bg {
  background-color: #11271B; /* Card BG */
}

.page-beginner-guide-first-bet__light-bg {
  background-color: #0A4B2C; /* Deep Green for contrast */
  color: #F2FFF6;
}

.page-beginner-guide-first-bet__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-beginner-guide-first-bet__step-card {
  background-color: #08160F;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-beginner-guide-first-bet__step-title {
  font-size: 1.4em;
  color: #2AD16F;
  margin-bottom: 15px;
}

.page-beginner-guide-first-bet__step-card p {
  color: #A7D9B8;
}

.page-beginner-guide-first-bet__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-beginner-guide-first-bet__video-section {
  padding: 10px 0 80px 0; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: #08160F;
}

.page-beginner-guide-first-bet__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  width: 100%; /* Desktop width constraint */
  max-width: 1000px; /* Example max width */
}

.page-beginner-guide-first-bet__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  display: block;
}

.page-beginner-guide-first-bet__grid-two-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-beginner-guide-first-bet__card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #F2FFF6;
}

.page-beginner-guide-first-bet__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-beginner-guide-first-bet__card-title {
  font-size: 1.6em;
  color: #2AD16F;
  margin-bottom: 15px;
}

.page-beginner-guide-first-bet__card p {
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-beginner-guide-first-bet__card ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.page-beginner-guide-first-bet__card li {
  color: #A7D9B8;
  margin-bottom: 5px;
}

.page-beginner-guide-first-bet__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-beginner-guide-first-bet__promo-card {
  background-color: #11271B;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 1px solid #2E7A4E;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-beginner-guide-first-bet__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-beginner-guide-first-bet__promo-title {
  font-size: 1.4em;
  color: #2AD16F;
  margin-bottom: 10px;
}

.page-beginner-guide-first-bet__promo-card p {
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-beginner-guide-first-bet__responsible-gaming-section {
  background-color: #0A4B2C; /* Deep Green */
}

.page-beginner-guide-first-bet__responsible-gaming-section p,
.page-beginner-guide-first-bet__responsible-gaming-section li {
  color: #F2FFF6; /* Main text on deep green */
}

.page-beginner-guide-first-bet__faq-list {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-beginner-guide-first-bet__faq-item {
  background-color: #08160F;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-beginner-guide-first-bet__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-beginner-guide-first-bet__faq-question::-webkit-details-marker {
  display: none;
}

.page-beginner-guide-first-bet__faq-question:hover {
  background-color: #11271B;
}

.page-beginner-guide-first-bet__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #2AD16F;
}

.page-beginner-guide-first-bet__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8;
  font-size: 1em;
  line-height: 1.6;
}

.page-beginner-guide-first-bet__cta-bottom-section {
  background-color: #11271B;
  padding-bottom: 100px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-beginner-guide-first-bet__content-wrapper {
    flex-direction: column;
  }
  .page-beginner-guide-first-bet__content-wrapper--reversed {
    flex-direction: column;
  }
  .page-beginner-guide-first-bet__hero-content {
    margin-top: -40px;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-first-bet__section {
    padding: 60px 0;
  }

  .page-beginner-guide-first-bet__main-title {
    font-size: 2.2em;
  }

  .page-beginner-guide-first-bet__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-first-bet__hero-content {
    padding: 30px 15px;
  }

  .page-beginner-guide-first-bet__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-beginner-guide-first-bet__btn-primary,
  .page-beginner-guide-first-bet__btn-secondary,
  .page-beginner-guide-first-bet__link-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-beginner-guide-first-bet__cta-buttons,
  .page-beginner-guide-first-bet__button-group,
  .page-beginner-guide-first-bet__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-beginner-guide-first-bet__cta-buttons {
    flex-direction: column;
  }

  .page-beginner-guide-first-bet__image,
  .page-beginner-guide-first-bet__card-image,
  .page-beginner-guide-first-bet__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-beginner-guide-first-bet__section,
  .page-beginner-guide-first-bet__card,
  .page-beginner-guide-first-bet__container,
  .page-beginner-guide-first-bet__video-section,
  .page-beginner-guide-first-bet__video-container,
  .page-beginner-guide-first-bet__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-beginner-guide-first-bet__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-beginner-guide-first-bet__video-wrapper {
    padding-bottom: 75%; /* Adjust aspect ratio for mobile if needed, e.g., 4:3 */
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-first-bet__hero-content {
    margin-top: -20px;
  }
  .page-beginner-guide-first-bet__main-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-bet__section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-first-bet__step-card,
  .page-beginner-guide-first-bet__card,
  .page-beginner-guide-first-bet__promo-card {
    padding: 20px;
  }
  .page-beginner-guide-first-bet__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-beginner-guide-first-bet__faq-answer {
    padding: 0 20px 15px 20px;
  }
}