/* style/blog-123bet-official-homepage-latest-promotions-analysis.css */

/* Base styles for the page */
.page-blog-123bet-official-homepage-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #F2FFF6); /* Default text color from palette */
  background-color: var(--background-color, #08160F); /* Ensure body background is respected */
}

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

/* Hero Section */
.page-blog-123bet-official-homepage-latest-promotions-analysis__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 */
  text-align: center;
  background-color: var(--deep-green-color, #0A4B2C);
  overflow: hidden;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit max height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__main-title {
  color: var(--text-main-color, #F2FFF6);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__description {
  color: var(--text-secondary-color, #A7D9B8);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__btn-primary,
.page-blog-123bet-official-homepage-latest-promotions-analysis__btn-secondary {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.4);
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__btn-secondary {
  background: var(--card-bg-color, #11271B);
  color: var(--text-main-color, #F2FFF6);
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--deep-green-color, #0A4B2C);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(46, 122, 78, 0.4);
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__cta-buttons--bottom {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Content Area */
.page-blog-123bet-official-homepage-latest-promotions-analysis__content-area {
  padding: 60px 0;
  background-color: var(--background-color, #08160F);
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__section-title {
  color: var(--gold-color, #F2C14E);
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--glow-color, #57E38D);
  border-radius: 2px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__text-block {
  margin-bottom: 20px;
  color: var(--text-main-color, #F2FFF6);
  font-size: 1.05em;
  line-height: 1.7;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__text-block strong {
  color: var(--gold-color, #F2C14E);
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__text-block em {
  font-style: italic;
  color: var(--text-secondary-color, #A7D9B8);
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__card {
  background-color: var(--card-bg-color, #11271B);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: var(--text-main-color, #F2FFF6);
  border: 1px solid var(--divider-color, #1E3A2A);
}

/* Feature Grid */
.page-blog-123bet-official-homepage-latest-promotions-analysis__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__feature-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__feature-title {
  color: var(--gold-color, #F2C14E);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__feature-description,
.page-blog-123bet-official-homepage-latest-promotions-analysis__feature-list {
  color: var(--text-secondary-color, #A7D9B8);
  text-align: left;
  width: 100%;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__feature-list {
  list-style: disc inside;
  padding-left: 10px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__feature-list li {
  margin-bottom: 8px;
}

/* Promotion Grid */
.page-blog-123bet-official-homepage-latest-promotions-analysis__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__promotion-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__promotion-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__promotion-title {
  color: var(--gold-color, #F2C14E);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__promotion-description {
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Guide Steps */
.page-blog-123bet-official-homepage-latest-promotions-analysis__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__step-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__step-title {
  color: var(--gold-color, #F2C14E);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__step-description {
  color: var(--text-secondary-color, #A7D9B8);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Payment Methods */
.page-blog-123bet-official-homepage-latest-promotions-analysis__payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__payment-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__payment-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__payment-title {
  color: var(--gold-color, #F2C14E);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__payment-description {
  color: var(--text-secondary-color, #A7D9B8);
  flex-grow: 1;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__cta-center {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Responsibility List */
.page-blog-123bet-official-homepage-latest-promotions-analysis__responsibility-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  margin-bottom: 40px;
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__responsibility-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* FAQ Section */
.page-blog-123bet-official-homepage-latest-promotions-analysis__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__faq-item {
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  color: var(--gold-color, #F2C14E);
  padding: 15px 20px;
  background-color: var(--deep-green-color, #0A4B2C);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__faq-question:hover {
  background-color: var(--main-color, #11A84E);
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--glow-color, #57E38D);
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__faq-answer {
  padding: 15px 20px;
  color: var(--text-secondary-color, #A7D9B8);
  background-color: var(--card-bg-color, #11271B);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__faq-item[open] .page-blog-123bet-official-homepage-latest-promotions-analysis__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 20px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__faq-item.active .page-blog-123bet-official-homepage-latest-promotions-analysis__faq-answer {
  max-height: 500px !important; /* For JS fallback */
  padding: 15px 20px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__faq-item.active .page-blog-123bet-official-homepage-latest-promotions-analysis__faq-question {
  background-color: var(--main-color, #11A84E);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-123bet-official-homepage-latest-promotions-analysis__main-title {
    font-size: 2.5em;
  }

  .page-blog-123bet-official-homepage-latest-promotions-analysis__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-123bet-official-homepage-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-123bet-official-homepage-latest-promotions-analysis__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-123bet-official-homepage-latest-promotions-analysis__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-123bet-official-homepage-latest-promotions-analysis__main-title {
    font-size: 2em;
  }

  .page-blog-123bet-official-homepage-latest-promotions-analysis__description {
    font-size: 1em;
  }

  .page-blog-123bet-official-homepage-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-123bet-official-homepage-latest-promotions-analysis__btn-primary,
  .page-blog-123bet-official-homepage-latest-promotions-analysis__btn-secondary,
  .page-blog-123bet-official-homepage-latest-promotions-analysis a[class*="button"],
  .page-blog-123bet-official-homepage-latest-promotions-analysis a[class*="btn"] {
    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-blog-123bet-official-homepage-latest-promotions-analysis__cta-buttons,
  .page-blog-123bet-official-homepage-latest-promotions-analysis__button-group,
  .page-blog-123bet-official-homepage-latest-promotions-analysis__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-blog-123bet-official-homepage-latest-promotions-analysis__section-title {
    font-size: 1.8em;
  }

  .page-blog-123bet-official-homepage-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-123bet-official-homepage-latest-promotions-analysis__section,
  .page-blog-123bet-official-homepage-latest-promotions-analysis__card,
  .page-blog-123bet-official-homepage-latest-promotions-analysis__container,
  .page-blog-123bet-official-homepage-latest-promotions-analysis__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-123bet-official-homepage-latest-promotions-analysis__feature-grid,
  .page-blog-123bet-official-homepage-latest-promotions-analysis__promotion-grid,
  .page-blog-123bet-official-homepage-latest-promotions-analysis__guide-steps,
  .page-blog-123bet-official-homepage-latest-promotions-analysis__payment-methods {
    grid-template-columns: 1fr;
  }
}

/* Ensure images within content sections are not smaller than 200px */
.page-blog-123bet-official-homepage-latest-promotions-analysis__feature-image,
.page-blog-123bet-official-homepage-latest-promotions-analysis__promotion-image,
.page-blog-123bet-official-homepage-latest-promotions-analysis__payment-image {
  min-width: 200px;
  min-height: 200px;
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__card {
  color: var(--text-main-color, #F2FFF6);
  background-color: var(--card-bg-color, #11271B);
}

.page-blog-123bet-official-homepage-latest-promotions-analysis p,
.page-blog-123bet-official-homepage-latest-promotions-analysis li {
  color: var(--text-main-color, #F2FFF6);
}

.page-blog-123bet-official-homepage-latest-promotions-analysis__dark-section {
  background: var(--deep-green-color, #0A4B2C);
  color: #ffffff;
}