/* style/blog-comebet-latest-promotions-analysis.css */

/* Custom Colors */
:root {
  --comebet-primary: #11A84E;
  --comebet-secondary: #22C768;
  --comebet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --comebet-card-bg: #11271B;
  --comebet-background: #08160F;
  --comebet-text-main: #F2FFF6;
  --comebet-text-secondary: #A7D9B8;
  --comebet-border: #2E7A4E;
  --comebet-glow: #57E38D;
  --comebet-gold: #F2C14E;
  --comebet-divider: #1E3A2A;
  --comebet-deep-green: #0A4B2C;
}

.page-blog-comebet-latest-promotions-analysis {
  background-color: var(--comebet-background);
  color: var(--comebet-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-blog-comebet-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is decorative */
  background-color: var(--comebet-deep-green);
}

.page-blog-comebet-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.page-blog-comebet-latest-promotions-analysis__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-comebet-latest-promotions-analysis__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--comebet-gold);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-comebet-latest-promotions-analysis__hero-description {
  font-size: 1.15rem;
  color: var(--comebet-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-comebet-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--comebet-button-gradient);
  color: var(--comebet-text-main);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-comebet-latest-promotions-analysis__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-comebet-latest-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--comebet-gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-comebet-latest-promotions-analysis__intro-section,
.page-blog-comebet-latest-promotions-analysis__types-section,
.page-blog-comebet-latest-promotions-analysis__guide-section,
.page-blog-comebet-latest-promotions-analysis__terms-section,
.page-blog-comebet-latest-promotions-analysis__featured-promotions,
.page-blog-comebet-latest-promotions-analysis__why-choose-section,
.page-blog-comebet-latest-promotions-analysis__faq-section,
.page-blog-comebet-latest-promotions-analysis__cta-bottom-section {
  padding: 60px 0;
  background-color: var(--comebet-background);
}

.page-blog-comebet-latest-promotions-analysis__text-block {
  font-size: 1rem;
  color: var(--comebet-text-main);
  margin-bottom: 25px;
  text-align: justify;
}

.page-blog-comebet-latest-promotions-analysis__text-block a {
  color: var(--comebet-secondary);
  text-decoration: underline;
}

.page-blog-comebet-latest-promotions-analysis__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-height: 200px;
  min-width: 200px;
}

.page-blog-comebet-latest-promotions-analysis__promotion-list,
.page-blog-comebet-latest-promotions-analysis__guide-list,
.page-blog-comebet-latest-promotions-analysis__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.page-blog-comebet-latest-promotions-analysis__list-item {
  background-color: var(--comebet-card-bg);
  border: 1px solid var(--comebet-border);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-comebet-latest-promotions-analysis__list-title {
  font-size: 1.3rem;
  color: var(--comebet-gold);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-comebet-latest-promotions-analysis__list-item p {
  font-size: 1rem;
  color: var(--comebet-text-secondary);
  margin-bottom: 0;
}

.page-blog-comebet-latest-promotions-analysis__btn-primary {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 15px 30px;
  background: var(--comebet-button-gradient);
  color: var(--comebet-text-main);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-comebet-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-comebet-latest-promotions-analysis__btn-secondary {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 15px 30px;
  background: transparent;
  color: var(--comebet-primary);
  text-decoration: none;
  border: 2px solid var(--comebet-primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-comebet-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--comebet-primary);
  color: var(--comebet-text-main);
}

.page-blog-comebet-latest-promotions-analysis__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-comebet-latest-promotions-analysis__promo-card {
  background-color: var(--comebet-card-bg);
  border: 1px solid var(--comebet-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-comebet-latest-promotions-analysis__promo-card:hover {
  transform: translateY(-5px);
}

.page-blog-comebet-latest-promotions-analysis__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-height: 200px;
  min-width: 200px;
}

.page-blog-comebet-latest-promotions-analysis__card-title {
  font-size: 1.2rem;
  color: var(--comebet-gold);
  padding: 20px 20px 10px 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.page-blog-comebet-latest-promotions-analysis__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-blog-comebet-latest-promotions-analysis__card-title a:hover {
  text-decoration: underline;
}

.page-blog-comebet-latest-promotions-analysis__card-description {
  font-size: 0.95rem;
  color: var(--comebet-text-secondary);
  padding: 0 20px 15px 20px;
  flex-grow: 1;
}

.page-blog-comebet-latest-promotions-analysis__card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px 20px;
  padding: 12px 0;
  background: var(--comebet-button-gradient);
  color: var(--comebet-text-main);
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-comebet-latest-promotions-analysis__card-button:hover {
  opacity: 0.9;
}

.page-blog-comebet-latest-promotions-analysis__why-choose-section .page-blog-comebet-latest-promotions-analysis__list-item {
  background-color: var(--comebet-card-bg);
  border: 1px solid var(--comebet-border);
}

.page-blog-comebet-latest-promotions-analysis__faq-list {
  margin-top: 40px;
}

.page-blog-comebet-latest-promotions-analysis__faq-item {
  background-color: var(--comebet-card-bg);
  border: 1px solid var(--comebet-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-comebet-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  color: var(--comebet-text-main);
  font-weight: 600;
  cursor: pointer;
  background-color: var(--comebet-card-bg);
  list-style: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Safari */
  -khtml-user-select: none;    /* Konqueror HTML */
  -moz-user-select: none;      /* Old versions of Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.page-blog-comebet-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-comebet-latest-promotions-analysis__faq-question::marker {
  display: none;
}

.page-blog-comebet-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--comebet-gold);
}

.page-blog-comebet-latest-promotions-analysis__faq-item[open] .page-blog-comebet-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-comebet-latest-promotions-analysis__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: var(--comebet-text-secondary);
  line-height: 1.5;
  background-color: var(--comebet-card-bg);
}

.page-blog-comebet-latest-promotions-analysis__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-blog-comebet-latest-promotions-analysis__cta-button--primary {
  background: var(--comebet-button-gradient);
  color: var(--comebet-text-main);
}

.page-blog-comebet-latest-promotions-analysis__cta-button--secondary {
  background: transparent;
  border: 2px solid var(--comebet-primary);
  color: var(--comebet-primary);
}

.page-blog-comebet-latest-promotions-analysis__cta-button--secondary:hover {
  background-color: var(--comebet-primary);
  color: var(--comebet-text-main);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-comebet-latest-promotions-analysis__main-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
  }
  .page-blog-comebet-latest-promotions-analysis__hero-description {
    font-size: 1.05rem;
  }
  .page-blog-comebet-latest-promotions-analysis__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-blog-comebet-latest-promotions-analysis__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-blog-comebet-latest-promotions-analysis__hero-image {
    margin-bottom: 30px;
  }
  .page-blog-comebet-latest-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-blog-comebet-latest-promotions-analysis__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-blog-comebet-latest-promotions-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  /* Ensure images are responsive and do not overflow */
  .page-blog-comebet-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-comebet-latest-promotions-analysis__section,
  .page-blog-comebet-latest-promotions-analysis__card,
  .page-blog-comebet-latest-promotions-analysis__container,
  .page-blog-comebet-latest-promotions-analysis__promo-card,
  .page-blog-comebet-latest-promotions-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-comebet-latest-promotions-analysis__hero-content {
    padding: 0 15px;
  }

  .page-blog-comebet-latest-promotions-analysis__intro-section,
  .page-blog-comebet-latest-promotions-analysis__types-section,
  .page-blog-comebet-latest-promotions-analysis__guide-section,
  .page-blog-comebet-latest-promotions-analysis__terms-section,
  .page-blog-comebet-latest-promotions-analysis__featured-promotions,
  .page-blog-comebet-latest-promotions-analysis__why-choose-section,
  .page-blog-comebet-latest-promotions-analysis__faq-section,
  .page-blog-comebet-latest-promotions-analysis__cta-bottom-section {
    padding: 40px 0;
  }

  .page-blog-comebet-latest-promotions-analysis__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-blog-comebet-latest-promotions-analysis__list-item {
    padding: 20px;
  }

  .page-blog-comebet-latest-promotions-analysis__list-title {
    font-size: 1.1rem;
  }

  .page-blog-comebet-latest-promotions-analysis__btn-primary,
  .page-blog-comebet-latest-promotions-analysis__btn-secondary {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    margin-top: 25px;
  }

  .page-blog-comebet-latest-promotions-analysis__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-comebet-latest-promotions-analysis__card-title {
    font-size: 1.1rem;
    padding: 15px 15px 8px 15px;
  }

  .page-blog-comebet-latest-promotions-analysis__card-description {
    padding: 0 15px 12px 15px;
  }

  .page-blog-comebet-latest-promotions-analysis__card-button {
    width: calc(100% - 30px);
    margin: 0 15px 15px 15px;
    padding: 10px 0;
    font-size: 0.95rem;
  }

  .page-blog-comebet-latest-promotions-analysis__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-comebet-latest-promotions-analysis__faq-answer {
    padding: 0 15px 15px 15px;
  }

  .page-blog-comebet-latest-promotions-analysis__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-comebet-latest-promotions-analysis__cta-button.page-blog-comebet-latest-promotions-analysis__cta-button--primary,
  .page-blog-comebet-latest-promotions-analysis__cta-button.page-blog-comebet-latest-promotions-analysis__cta-button--secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}