.page-beginner-guide-how-to-bet {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #121212, so text should be light */
  background-color: transparent; /* Main content background is transparent to show body background */
}

.page-beginner-guide-how-to-bet__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  background-color: #017439; /* Brand primary color for hero background */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
}

.page-beginner-guide-how-to-bet__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-beginner-guide-how-to-bet__hero-content {
  max-width: 800px;
}

.page-beginner-guide-how-to-bet__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-beginner-guide-how-to-bet__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-beginner-guide-how-to-bet__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-beginner-guide-how-to-bet__btn-primary,
.page-beginner-guide-how-to-bet__btn-secondary,
.page-beginner-guide-how-to-bet__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-beginner-guide-how-to-bet__btn-primary {
  background-color: #C30808; /* Login/Register color */
  color: #FFFF00; /* Login/Register font color */
  border: 2px solid #C30808;
}

.page-beginner-guide-how-to-bet__btn-primary:hover {
  background-color: #ff3333;
  border-color: #ff3333;
}

.page-beginner-guide-how-to-bet__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-beginner-guide-how-to-bet__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

.page-beginner-guide-how-to-bet__btn-text {
  background-color: #017439;
  color: #ffffff;
  border: 1px solid #017439;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-beginner-guide-how-to-bet__btn-text:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

.page-beginner-guide-how-to-bet__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 800px; /* Constrain image width */
}

.page-beginner-guide-how-to-bet__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-how-to-bet__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for content area */
  border-radius: 10px;
  margin-top: -60px; /* Overlap with hero section for visual flow */
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-how-to-bet__section-spacing {
  padding-bottom: 60px;
}

.page-beginner-guide-how-to-bet__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-beginner-guide-how-to-bet__section-title {
  font-size: 2.2em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
  font-weight: bold;
}

.page-beginner-guide-how-to-bet__text-block {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
  text-align: justify;
}

.page-beginner-guide-how-to-bet__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-beginner-guide-how-to-bet__step-card,
.page-beginner-guide-how-to-bet__type-card {
  background-color: #2a2a2a; /* Card background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.page-beginner-beginner-guide-how-to-bet__card-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide-how-to-bet__card-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Card image max width */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-beginner-guide-how-to-bet__card-text {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-beginner-guide-how-to-bet__betting-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.page-beginner-guide-how-to-bet__strategy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.page-beginner-guide-how-to-bet__strategy-item {
  background-color: #2a2a2a;
  border-left: 5px solid #017439;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-how-to-bet__strategy-heading {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-beginner-guide-how-to-bet__strategy-text {
  color: #e0e0e0;
}

.page-beginner-guide-how-to-bet__withdrawal-steps {
  list-style-type: decimal;
  padding-left: 25px;
  color: #e0e0e0;
  margin-bottom: 50px;
}

.page-beginner-guide-how-to-bet__withdrawal-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-beginner-guide-how-to-bet__withdrawal-item strong {
  color: #ffffff;
}

.page-beginner-guide-how-to-bet__promo-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}