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

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

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

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

.page-blog-bty522-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles top padding, this is decorative */
  text-align: center;
  overflow: hidden;
}

.page-blog-bty522-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

.page-blog-bty522-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  margin-top: -150px; /* Pull content up slightly, but not OVER the image */
}

.page-blog-bty522-latest-promotions-analysis__main-title {
  color: var(--bty522-gold-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-blog-bty522-latest-promotions-analysis__hero-description {
  color: var(--bty522-text-main);
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-blog-bty522-latest-promotions-analysis__btn-primary,
.page-blog-bty522-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  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-bty522-latest-promotions-analysis__btn-primary {
  background: var(--bty522-btn-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-bty522-latest-promotions-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-bty522-latest-promotions-analysis__btn-secondary {
  background: transparent;
  color: var(--bty522-gold-color);
  border: 2px solid var(--bty522-gold-color);
}

.page-blog-bty522-latest-promotions-analysis__btn-secondary:hover {
  background: var(--bty522-gold-color);
  color: var(--bty522-bg-color);
}

.page-blog-bty522-latest-promotions-analysis__section-title {
  color: var(--bty522-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.page-blog-bty522-latest-promotions-analysis__sub-title {
  color: var(--bty522-gold-color);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-bty522-latest-promotions-analysis__text-block {
  color: var(--bty522-text-main);
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-blog-bty522-latest-promotions-analysis__intro-section,
.page-blog-bty522-latest-promotions-analysis__promotions-section,
.page-blog-bty522-latest-promotions-analysis__games-section,
.page-blog-bty522-latest-promotions-analysis__registration-section,
.page-blog-bty522-latest-promotions-analysis__transactions-section,
.page-blog-bty522-latest-promotions-analysis__support-app-section,
.page-blog-bty522-latest-promotions-analysis__conclusion-section,
.page-blog-bty522-latest-promotions-analysis__copyright-section {
  padding: 60px 0;
}

.page-blog-bty522-latest-promotions-analysis__promotions-image,
.page-blog-bty522-latest-promotions-analysis__games-image,
.page-blog-bty522-latest-promotions-analysis__transactions-image,
.page-blog-bty522-latest-promotions-analysis__app-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-bty522-latest-promotions-analysis__promotions-grid,
.page-blog-bty522-latest-promotions-analysis__game-categories,
.page-blog-bty522-latest-promotions-analysis__steps-grid,
.page-blog-bty522-latest-promotions-analysis__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-bty522-latest-promotions-analysis__card {
  background-color: var(--bty522-card-bg);
  border: 1px solid var(--bty522-border-color);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--bty522-text-main);
}

.page-blog-bty522-latest-promotions-analysis__card-title {
  color: var(--bty522-gold-color);
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-bty522-latest-promotions-analysis__card-text {
  color: var(--bty522-text-secondary);
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-blog-bty522-latest-promotions-analysis__card .page-blog-bty522-latest-promotions-analysis__btn-primary,
.page-blog-bty522-latest-promotions-analysis__card .page-blog-bty522-latest-promotions-analysis__btn-secondary {
  margin-top: auto;
}

.page-blog-bty522-latest-promotions-analysis__dark-bg {
  background-color: var(--bty522-card-bg);
  color: var(--bty522-text-main);
}

.page-blog-bty522-latest-promotions-analysis__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-bty522-latest-promotions-analysis__text-contrast-fix {
  color: #333333 !important;
}

.page-blog-bty522-latest-promotions-analysis__list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: var(--bty522-text-main);
}

.page-blog-bty522-latest-promotions-analysis__list li {
  margin-bottom: 10px;
  color: inherit;
}

.page-blog-bty522-latest-promotions-analysis__list strong {
  color: var(--bty522-gold-color);
}

.page-blog-bty522-latest-promotions-analysis__grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.page-blog-bty522-latest-promotions-analysis__content-block {
  padding: 20px;
  background-color: var(--bty522-card-bg);
  border-radius: 10px;
  border: 1px solid var(--bty522-border-color);
}

.page-blog-bty522-latest-promotions-analysis__faq-section {
  margin-top: 60px;
}

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

.page-blog-bty522-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: var(--bty522-deep-green);
  font-weight: bold;
  color: var(--bty522-text-main);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-bty522-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-bty522-latest-promotions-analysis__faq-question:hover {
  background-color: var(--bty522-border-color);
}

.page-blog-bty522-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
  color: var(--bty522-text-main);
}

.page-blog-bty522-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--bty522-gold-color);
}

.page-blog-bty522-latest-promotions-analysis__faq-answer {
  padding: 15px 25px 20px 25px;
  background-color: var(--bty522-card-bg);
  color: var(--bty522-text-secondary);
  font-size: 0.95em;
}

.page-blog-bty522-latest-promotions-analysis__faq-answer p {
    margin-bottom: 0;
    color: inherit;
}

.page-blog-bty522-latest-promotions-analysis__copyright-section {
  padding: 30px 0;
  text-align: center;
  background-color: var(--bty522-deep-green);
  border-top: 1px solid var(--bty522-divider-color);
}

.page-blog-bty522-latest-promotions-analysis__copyright-text {
  color: var(--bty522-text-secondary);
  font-size: 0.9em;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-bty522-latest-promotions-analysis__main-title {
    font-size: 2.2em;
  }
  .page-blog-bty522-latest-promotions-analysis__hero-description {
    font-size: 1em;
  }
  .page-blog-bty522-latest-promotions-analysis__grid-two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-blog-bty522-latest-promotions-analysis__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
    padding-bottom: 40px;
  }
  .page-blog-bty522-latest-promotions-analysis__hero-content {
    margin-top: -100px;
    padding: 20px 15px;
  }
  .page-blog-bty522-latest-promotions-analysis__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
    margin-bottom: 15px;
  }
  .page-blog-bty522-latest-promotions-analysis__hero-description {
    font-size: 0.95em;
    margin-bottom: 20px;
  }
  .page-blog-bty522-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-blog-bty522-latest-promotions-analysis__btn-primary,
  .page-blog-bty522-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-bty522-latest-promotions-analysis__intro-section,
  .page-blog-bty522-latest-promotions-analysis__promotions-section,
  .page-blog-bty522-latest-promotions-analysis__games-section,
  .page-blog-bty522-latest-promotions-analysis__registration-section,
  .page-blog-bty522-latest-promotions-analysis__transactions-section,
  .page-blog-bty522-latest-promotions-analysis__support-app-section,
  .page-blog-bty522-latest-promotions-analysis__conclusion-section,
  .page-blog-bty522-latest-promotions-analysis__copyright-section {
    padding: 40px 0;
  }

  .page-blog-bty522-latest-promotions-analysis__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-bty522-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-bty522-latest-promotions-analysis__section,
  .page-blog-bty522-latest-promotions-analysis__card,
  .page-blog-bty522-latest-promotions-analysis__container,
  .page-blog-bty522-latest-promotions-analysis__content-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-bty522-latest-promotions-analysis__promotions-grid,
  .page-blog-bty522-latest-promotions-analysis__game-categories,
  .page-blog-bty522-latest-promotions-analysis__steps-grid,
  .page-blog-bty522-latest-promotions-analysis__features-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .page-blog-bty522-latest-promotions-analysis__faq-question {
    padding: 15px 20px;
  }

  .page-blog-bty522-latest-promotions-analysis__faq-answer {
    padding: 10px 20px 15px 20px;
  }
}