.page-blog-123-bet-promotions-guide {
  --primary-color: #C61F1F;
  --secondary-color: #E53030;
  --card-bg-color: #2A1212;
  --background-main-color: #140C0C;
  --text-main-color: #FFF1E8;
  --border-color: #6A1E1E;
  --gold-color: #F3C54D;
  --deep-red-color: #7E0D0D;

  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color);
  background-color: var(--background-main-color);
}

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

.page-blog-123-bet-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  box-sizing: border-box;
}

.page-blog-123-bet-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Adjust as needed */
}

.page-blog-123-bet-promotions-guide__hero-content {
  position: relative; /* Changed from absolute to relative to ensure it's below the image */
  z-index: 10;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(20, 12, 12, 0.8), rgba(20, 12, 12, 0.95));
  width: 100%;
  max-width: 800px;
  margin-top: -100px; /* Pull content up slightly over the bottom of the image */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.page-blog-123-bet-promotions-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-blog-123-bet-promotions-guide__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-main-color);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-123-bet-promotions-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-123-bet-promotions-guide__btn-primary,
.page-blog-123-bet-promotions-guide__btn-secondary,
.page-blog-123-bet-promotions-guide__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-123-bet-promotions-guide__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: var(--text-main-color);
  border: none;
}

.page-blog-123-bet-promotions-guide__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 176, 74, 0.4);
}

.page-blog-123-bet-promotions-guide__btn-secondary {
  background: var(--primary-color);
  color: var(--text-main-color);
  border: 2px solid var(--gold-color);
}

.page-blog-123-bet-promotions-guide__btn-secondary:hover {
  transform: translateY(-2px);
  background-color: var(--secondary-color);
  box-shadow: 0 4px 10px rgba(198, 31, 31, 0.4);
}

.page-blog-123-bet-promotions-guide__btn-tertiary {
  background: var(--deep-red-color);
  color: var(--text-main-color);
  border: 1px solid var(--border-color);
  font-size: 0.9em;
  padding: 10px 20px;
}

.page-blog-123-bet-promotions-guide__btn-tertiary:hover {
  background-color: var(--primary-color);
}

.page-blog-123-bet-promotions-guide__content-section,
.page-blog-123-bet-promotions-guide__registration-guide,
.page-blog-123-bet-promotions-guide__promotions-section,
.page-blog-123-bet-promotions-guide__tips-section,
.page-blog-123-bet-promotions-guide__responsible-gambling-section,
.page-blog-123-bet-promotions-guide__faq-section,
.page-blog-123-bet-promotions-guide__cta-final-section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-123-bet-promotions-guide__dark-bg {
  background-color: var(--background-main-color);
  color: var(--text-main-color);
}

.page-blog-123-bet-promotions-guide__light-bg {
  background-color: #f8f8f8; /* A very light grey for contrast */
  color: #333333; /* Dark text for light background */
}

.page-blog-123-bet-promotions-guide__light-bg .page-blog-123-bet-promotions-guide__section-title {
  color: var(--deep-red-color);
}

.page-blog-123-bet-promotions-guide__light-bg .page-blog-123-bet-promotions-guide__text-block {
  color: #555555;
}

.page-blog-123-bet-promotions-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-color);
  margin-bottom: 30px;
  font-weight: bold;
}

.page-blog-123-bet-promotions-guide__text-block {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-123-bet-promotions-guide__feature-card,
.page-blog-123-bet-promotions-guide__promo-card {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-123-bet-promotions-guide__feature-title,
.page-blog-123-bet-promotions-guide__promo-title {
  color: var(--gold-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-blog-123-bet-promotions-guide__feature-card p,
.page-blog-123-bet-promotions-guide__promo-card p {
  color: var(--text-main-color);
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-123-bet-promotions-guide__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-123-bet-promotions-guide__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-blog-123-bet-promotions-guide__step-icon {
  background-color: var(--primary-color);
  color: var(--text-main-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-blog-123-bet-promotions-guide__step-title {
  color: var(--deep-red-color);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-blog-123-bet-promotions-guide__step-card p {
  font-size: 1rem;
  color: #555555;
}

.page-blog-123-bet-promotions-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 1000px;
}

.page-blog-123-bet-promotions-guide__cta-center {
  margin-top: 40px;
  text-align: center;
}

.page-blog-123-bet-promotions-guide__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-blog-123-bet-promotions-guide__tips-list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
  color: #333333;
  border-left: 5px solid var(--primary-color);
}

.page-blog-123-bet-promotions-guide__tips-list li strong {
  color: var(--deep-red-color);
}

.page-blog-123-bet-promotions-guide__responsible-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-123-bet-promotions-guide__feature-item {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid var(--border-color);
}

.page-blog-123-bet-promotions-guide__item-title {
  color: var(--gold-color);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-blog-123-bet-promotions-guide__feature-item p {
  color: var(--text-main-color);
  font-size: 1rem;
}

.page-blog-123-bet-promotions-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-blog-123-bet-promotions-guide__faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.page-blog-123-bet-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--deep-red-color);
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}

.page-blog-123-bet-promotions-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-123-bet-promotions-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-123-bet-promotions-guide__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-blog-123-bet-promotions-guide__faq-item[open] .page-blog-123-bet-promotions-guide__faq-toggle {
  content: '−';
}

.page-blog-123-bet-promotions-guide__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: #555555;
  background-color: #ffffff;
}

.page-blog-123-bet-promotions-guide__cta-final-section .page-blog-123-bet-promotions-guide__image-full-width {
  margin-top: 60px;
  margin-bottom: 0;
}

/* --- Responsive Styles --- */

/* All images responsive by default */
.page-blog-123-bet-promotions-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .page-blog-123-bet-promotions-guide__container,
  .page-blog-123-bet-promotions-guide__hero-content,
  .page-blog-123-bet-promotions-guide__cta-buttons,
  .page-blog-123-bet-promotions-guide__features-grid,
  .page-blog-123-bet-promotions-guide__promos-grid,
  .page-blog-123-bet-promotions-guide__steps-container,
  .page-blog-123-bet-promotions-guide__tips-list,
  .page-blog-123-bet-promotions-guide__responsible-features,
  .page-blog-123-bet-promotions-guide__faq-list {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .page-blog-123-bet-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-123-bet-promotions-guide__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
  }

  .page-blog-123-bet-promotions-guide__hero-content {
    margin-top: -50px; /* Adjust for smaller screens */
    padding: 15px;
  }

  .page-blog-123-bet-promotions-guide__main-title {
    font-size: 2rem;
  }

  .page-blog-123-bet-promotions-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-123-bet-promotions-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-123-bet-promotions-guide__btn-primary,
  .page-blog-123-bet-promotions-guide__btn-secondary,
  .page-blog-123-bet-promotions-guide__btn-tertiary {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-123-bet-promotions-guide__section-title {
    font-size: 1.8rem;
  }

  .page-blog-123-bet-promotions-guide__text-block,
  .page-blog-123-bet-promotions-guide__tips-list li,
  .page-blog-123-bet-promotions-guide__feature-card p,
  .page-blog-123-bet-promotions-guide__promo-card p,
  .page-blog-123-bet-promotions-guide__step-card p,
  .page-blog-123-bet-promotions-guide__feature-item p,
  .page-blog-123-bet-promotions-guide__faq-answer p {
    font-size: 1rem !important;
  }

  .page-blog-123-bet-promotions-guide__feature-card,
  .page-blog-123-bet-promotions-guide__promo-card,
  .page-blog-123-bet-promotions-guide__step-card,
  .page-blog-123-bet-promotions-guide__feature-item {
    padding: 20px;
  }

  .page-blog-123-bet-promotions-guide__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-123-bet-promotions-guide__faq-answer {
    padding: 15px;
  }
}