/* style/blog-12bey-win-latest-promotions-analysis.css */

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

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

.page-blog-12bey-win-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px;
  overflow: hidden;
}

.page-blog-12bey-win-latest-promotions-analysis__hero-image {
  width: 100%;
  height: 675px; /* Display height for 16:9 aspect ratio at 1200px width */
  object-fit: cover;
  display: block;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-blog-12bey-win-latest-promotions-analysis__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-blog-12bey-win-latest-promotions-analysis__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-12bey-win-latest-promotions-analysis__hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-12bey-win-latest-promotions-analysis__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-blog-12bey-win-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-12bey-win-latest-promotions-analysis__video-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px;
  background-color: var(--background-dark);
}

.page-blog-12bey-win-latest-promotions-analysis__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-12bey-win-latest-promotions-analysis__video-title {
  font-size: 2.2rem;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-blog-12bey-win-latest-promotions-analysis__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  width: 100%; /* Ensure it takes full width of its container */
  max-width: 100%; /* Ensure it doesn't overflow */
  box-sizing: border-box;
}

.page-blog-12bey-win-latest-promotions-analysis__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.page-blog-12bey-win-latest-promotions-analysis__video-caption {
  text-align: center;
  color: var(--text-secondary);
  margin-top: 20px;
  font-style: italic;
}

.page-blog-12bey-win-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-dark);
}

.page-blog-12bey-win-latest-promotions-analysis__section-wrapper {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-blog-12bey-win-latest-promotions-analysis__section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--divider-color);
  padding-bottom: 10px;
}

.page-blog-12bey-win-latest-promotions-analysis__paragraph {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-blog-12bey-win-latest-promotions-analysis__image-in-content {
  width: 100%;
  height: 450px; /* Example for 800x600 image display in 4:3 aspect ratio */
  object-fit: cover;
  border-radius: 8px;
  margin: 25px 0;
  display: block;
}

.page-blog-12bey-win-latest-promotions-analysis__list,
.page-blog-12bey-win-latest-promotions-analysis__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-12bey-win-latest-promotions-analysis__ordered-list {
  list-style-type: decimal;
}

.page-blog-12bey-win-latest-promotions-analysis__list-item {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-blog-12bey-win-latest-promotions-analysis__list-item strong {
  color: var(--text-main);
}

.page-blog-12bey-win-latest-promotions-analysis__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-12bey-win-latest-promotions-analysis__card {
  background-color: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.page-blog-12bey-win-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
}

.page-blog-12bey-win-latest-promotions-analysis__card-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-12bey-win-latest-promotions-analysis__card-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-12bey-win-latest-promotions-analysis__card-features {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-12bey-win-latest-promotions-analysis__card-features li {
  color: var(--text-secondary);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.page-blog-12bey-win-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

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

.page-blog-12bey-win-latest-promotions-analysis__cta-container {
  text-align: center;
  margin-top: 40px;
}

.page-blog-12bey-win-latest-promotions-analysis__faq-list {
  margin-top: 30px;
}

.page-blog-12bey-win-latest-promotions-analysis__faq-item {
  background-color: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-12bey-win-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--divider-color);
}

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

.page-blog-12bey-win-latest-promotions-analysis__faq-question::marker {
  display: none;
}

.page-blog-12bey-win-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-12bey-win-latest-promotions-analysis__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-blog-12bey-win-latest-promotions-analysis__faq-item[open] .page-blog-12bey-win-latest-promotions-analysis__faq-question {
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-12bey-win-latest-promotions-analysis__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.page-blog-12bey-win-latest-promotions-analysis__faq-answer .page-blog-12bey-win-latest-promotions-analysis__paragraph {
  margin-bottom: 0;
}

.page-blog-12bey-win-latest-promotions-analysis__related-articles-section {
  padding: 60px 20px;
  background-color: var(--background-dark);
}

.page-blog-12bey-win-latest-promotions-analysis__article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-12bey-win-latest-promotions-analysis__article-card {
  background-color: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-12bey-win-latest-promotions-analysis__article-card:hover {
  transform: translateY(-5px);
}

.page-blog-12bey-win-latest-promotions-analysis__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-12bey-win-latest-promotions-analysis__article-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  padding: 15px;
  margin-bottom: 0;
  flex-grow: 1;
}

.page-blog-12bey-win-latest-promotions-analysis__article-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-12bey-win-latest-promotions-analysis__article-title a:hover {
  color: var(--gold-color);
}

.page-blog-12bey-win-latest-promotions-analysis__article-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0 15px 10px;
}

.page-blog-12bey-win-latest-promotions-analysis__read-more {
  display: inline-block;
  padding: 10px 15px;
  background-color: var(--deep-green);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
  margin: 0 15px 15px;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.page-blog-12bey-win-latest-promotions-analysis__read-more:hover {
  background-color: var(--primary-color);
}

.page-blog-12bey-win-latest-promotions-analysis__view-all-container {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-12bey-win-latest-promotions-analysis__hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-blog-12bey-win-latest-promotions-analysis__hero-image {
    height: 500px;
  }
  .page-blog-12bey-win-latest-promotions-analysis__section-wrapper {
    padding: 30px;
  }
  .page-blog-12bey-win-latest-promotions-analysis__promotion-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-12bey-win-latest-promotions-analysis__hero-section {
    padding: 10px 15px 40px;
  }
  .page-blog-12bey-win-latest-promotions-analysis__hero-image {
    height: 300px !important;
    margin-bottom: 30px;
  }
  .page-blog-12bey-win-latest-promotions-analysis__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-12bey-win-latest-promotions-analysis__hero-description {
    font-size: 1rem;
  }
  .page-blog-12bey-win-latest-promotions-analysis__btn-primary {
    padding: 12px 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-12bey-win-latest-promotions-analysis__video-section {
    padding: 10px 15px 40px !important; /* body already handles offset */
  }
  .page-blog-12bey-win-latest-promotions-analysis__video-container,
  .page-blog-12bey-win-latest-promotions-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-blog-12bey-win-latest-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-12bey-win-latest-promotions-analysis__content-area {
    padding: 30px 15px;
  }
  .page-blog-12bey-win-latest-promotions-analysis__section-wrapper {
    padding: 20px;
  }
  .page-blog-12bey-win-latest-promotions-analysis__section-title {
    font-size: 1.8rem;
  }
  .page-blog-12bey-win-latest-promotions-analysis__paragraph,
  .page-blog-12bey-win-latest-promotions-analysis__list-item {
    font-size: 1rem;
  }
  .page-blog-12bey-win-latest-promotions-analysis__image-in-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-12bey-win-latest-promotions-analysis__promotion-cards {
    grid-template-columns: 1fr;
  }
  .page-blog-12bey-win-latest-promotions-analysis__card {
    padding: 20px;
  }
  .page-blog-12bey-win-latest-promotions-analysis__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-12bey-win-latest-promotions-analysis__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-blog-12bey-win-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
  }
  .page-blog-12bey-win-latest-promotions-analysis__faq-answer {
    padding: 15px;
  }
  .page-blog-12bey-win-latest-promotions-analysis__related-articles-section {
    padding: 40px 15px;
  }
  .page-blog-12bey-win-latest-promotions-analysis__article-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-12bey-win-latest-promotions-analysis__article-image {
    height: 180px;
  }
  .page-blog-12bey-win-latest-promotions-analysis__article-title {
    font-size: 1.1rem;
  }
  /* Ensure all containers with images/videos/buttons are responsive */
  .page-blog-12bey-win-latest-promotions-analysis__hero-section,
  .page-blog-12bey-win-latest-promotions-analysis__content-area,
  .page-blog-12bey-win-latest-promotions-analysis__related-articles-section,
  .page-blog-12bey-win-latest-promotions-analysis__section-wrapper,
  .page-blog-12bey-win-latest-promotions-analysis__promotion-cards,
  .page-blog-12bey-win-latest-promotions-analysis__card,
  .page-blog-12bey-win-latest-promotions-analysis__cta-container,
  .page-blog-12bey-win-latest-promotions-analysis__article-grid,
  .page-blog-12bey-win-latest-promotions-analysis__article-card,
  .page-blog-12bey-win-latest-promotions-analysis__view-all-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Adjust padding for elements that should extend to edges */
  .page-blog-12bey-win-latest-promotions-analysis__hero-section,
  .page-blog-12bey-win-latest-promotions-analysis__video-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-blog-12bey-win-latest-promotions-analysis__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-12bey-win-latest-promotions-analysis__hero-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-blog-12bey-win-latest-promotions-analysis__hero-image {
    height: 250px !important;
  }
  .page-blog-12bey-win-latest-promotions-analysis__section-title {
    font-size: 1.5rem;
  }
  .page-blog-12bey-win-latest-promotions-analysis__card-title {
    font-size: 1.2rem;
  }
  .page-blog-12bey-win-latest-promotions-analysis__faq-question {
    padding: 12px;
  }
  .page-blog-12bey-win-latest-promotions-analysis__faq-answer {
    padding: 12px;
  }
}