/* style/blog-bi888-latest-games-and-promotions.css */

/* Variables for colors */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --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;
}

.page-blog-bi888-latest-games-and-promotions {
  color: var(--text-main); /* Default text color for the page content */
  background-color: var(--background-dark);
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-blog-bi888-latest-games-and-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small padding-top as body handles header offset */
  background-color: var(--background-dark);
  color: var(--text-main);
  overflow: hidden;
}

.page-blog-bi888-latest-games-and-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-bi888-latest-games-and-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-bi888-latest-games-and-promotions__hero-content {
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-bi888-latest-games-and-promotions__main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-blog-bi888-latest-games-and-promotions__hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-bi888-latest-games-and-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-bi888-latest-games-and-promotions__btn-primary,
.page-blog-bi888-latest-games-and-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-bi888-latest-games-and-promotions__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* Text is white on green gradient */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-bi888-latest-games-and-promotions__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-bi888-latest-games-and-promotions__btn-secondary {
  background-color: transparent;
  color: var(--primary-color); /* Text is primary color on transparent */
  border: 2px solid var(--primary-color);
}

.page-blog-bi888-latest-games-and-promotions__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff; /* Text is white on primary color */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-bi888-latest-games-and-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-dark);
  color: var(--text-main);
  box-sizing: border-box;
}

.page-blog-bi888-latest-games-and-promotions__section-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--gold-color);
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-bi888-latest-games-and-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-blog-bi888-latest-games-and-promotions__paragraph {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-bi888-latest-games-and-promotions__promo-grid,
.page-blog-bi888-latest-games-and-promotions__game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.page-blog-bi888-latest-games-and-promotions__promo-card,
.page-blog-bi888-latest-games-and-promotions__game-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-bi888-latest-games-and-promotions__promo-card:hover,
.page-blog-bi888-latest-games-and-promotions__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-bi888-latest-games-and-promotions__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-bi888-latest-games-and-promotions__card-title {
  font-size: 1.3rem;
  color: var(--text-main);
  padding: 20px 15px 10px;
  margin: 0;
}

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

.page-blog-bi888-latest-games-and-promotions__promo-card .page-blog-bi888-latest-games-and-promotions__btn-primary,
.page-blog-bi888-latest-games-and-promotions__promo-card .page-blog-bi888-latest-games-and-promotions__btn-secondary,
.page-blog-bi888-latest-games-and-promotions__game-card .page-blog-bi888-latest-games-and-promotions__btn-primary {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
  text-align: center;
}

.page-blog-bi888-latest-games-and-promotions__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-bi888-latest-games-and-promotions__list {
  list-style-type: disc;
  margin-left: 25px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-blog-bi888-latest-games-and-promotions__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-blog-bi888-latest-games-and-promotions__list-item strong {
  color: var(--text-main);
}

.page-blog-bi888-latest-games-and-promotions__ordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-blog-bi888-latest-games-and-promotions__cta-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-bi888-latest-games-and-promotions__faq-list {
  margin-top: 30px;
  margin-bottom: 50px;
}

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

.page-blog-bi888-latest-games-and-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-main);
  background-color: var(--deep-green);
  transition: background-color 0.3s ease;
  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-bi888-latest-games-and-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-bi888-latest-games-and-promotions__faq-item[open] .page-blog-bi888-latest-games-and-promotions__faq-question {
  background-color: var(--primary-color);
}

.page-blog-bi888-latest-games-and-promotions__faq-qtext {
  flex-grow: 1;
  font-size: 1.1rem;
}

.page-blog-bi888-latest-games-and-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--text-main);
}

.page-blog-bi888-latest-games-and-promotions__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: var(--text-secondary);
  background-color: var(--card-bg);
  border-top: 1px solid var(--divider-color);
}

.page-blog-bi888-latest-games-and-promotions__faq-answer p {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-bi888-latest-games-and-promotions {
    font-size: 15px;
  }

  .page-blog-bi888-latest-games-and-promotions__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-bi888-latest-games-and-promotions__main-title {
    font-size: 2rem;
  }

  .page-blog-bi888-latest-games-and-promotions__hero-description {
    font-size: 1rem;
  }

  .page-blog-bi888-latest-games-and-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }

  .page-blog-bi888-latest-games-and-promotions__btn-primary,
  .page-blog-bi888-latest-games-and-promotions__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-bi888-latest-games-and-promotions__content-area {
    padding: 30px 15px;
  }

  .page-blog-bi888-latest-games-and-promotions__section-title {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .page-blog-bi888-latest-games-and-promotions__promo-grid,
  .page-blog-bi888-latest-games-and-promotions__game-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .page-blog-bi888-latest-games-and-promotions__card-title {
    font-size: 1.2rem;
  }

  .page-blog-bi888-latest-games-and-promotions__card-description {
    font-size: 0.9rem;
  }

  .page-blog-bi888-latest-games-and-promotions__image-full-width,
  .page-blog-bi888-latest-games-and-promotions__hero-image,
  .page-blog-bi888-latest-games-and-promotions__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-bi888-latest-games-and-promotions__hero-image-wrapper,
  .page-blog-bi888-latest-games-and-promotions__promo-card,
  .page-blog-bi888-latest-games-and-promotions__game-card,
  .page-blog-bi888-latest-games-and-promotions__faq-item,
  .page-blog-bi888-latest-games-and-promotions__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-bi888-latest-games-and-promotions__faq-question {
    padding: 15px;
    font-size: 1rem;
  }

  .page-blog-bi888-latest-games-and-promotions__faq-answer {
    padding: 15px;
    font-size: 0.95rem;
  }
}