/* style/blog-639club-latest-promotions-guide.css */

/* Variables for colors */
:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --card-bg: #111111;
  --background-color: #0A0A0A;
  --text-main-color: #FFF6D6;
  --border-color: #3A2A12;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --glow-color: #FFD36B;
}

.page-blog-639club-latest-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Ensures text is visible on dark body background */
  background-color: var(--background-color);
}

.page-blog-639club-latest-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 10px; /* Small top spacing for content below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-blog-639club-latest-promotions-guide__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-639club-latest-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-639club-latest-promotions-guide__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content slightly over image, but not covering text */
  background: rgba(17, 17, 17, 0.7); /* Semi-transparent dark background */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border: 1px solid var(--border-color);
}

.page-blog-639club-latest-promotions-guide__main-title {
  font-size: 2.8em;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 0 0 8px var(--glow-color);
}

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

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

.page-blog-639club-latest-promotions-guide__cta-buttons--centered {
  justify-content: center;
  margin-top: 40px;
}

.page-blog-639club-latest-promotions-guide__btn-primary,
.page-blog-639club-latest-promotions-guide__card-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: var(--button-gradient);
  color: #ffffff; /* Button text always white for contrast */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  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;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-639club-latest-promotions-guide__btn-primary:hover,
.page-blog-639club-latest-promotions-guide__card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.page-blog-639club-latest-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-639club-latest-promotions-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
}

.page-blog-639club-latest-promotions-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-639club-latest-promotions-guide__container {
  max-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog-639club-latest-promotions-guide__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 0 5px rgba(242, 193, 78, 0.4);
}

.page-blog-639club-latest-promotions-guide__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-639club-latest-promotions-guide__promo-grid,
.page-blog-639club-latest-promotions-guide__steps-grid,
.page-blog-639club-latest-promotions-guide__game-categories,
.page-blog-639club-latest-promotions-guide__partners-grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.page-blog-639club-latest-promotions-guide__promo-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-blog-639club-latest-promotions-guide__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-blog-639club-latest-promotions-guide__game-categories {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-blog-639club-latest-promotions-guide__partners-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-items: center;
  align-items: center;
}

.page-blog-639club-latest-promotions-guide__promo-card,
.page-blog-639club-latest-promotions-guide__step-card,
.page-blog-639club-latest-promotions-guide__info-block,
.page-blog-639club-latest-promotions-guide__category-card {
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-639club-latest-promotions-guide__promo-card:hover,
.page-blog-639club-latest-promotions-guide__step-card:hover,
.page-blog-639club-latest-promotions-guide__info-block:hover,
.page-blog-639club-latest-promotions-guide__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.page-blog-639club-latest-promotions-guide__promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

.page-blog-639club-latest-promotions-guide__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
}

.page-blog-639club-latest-promotions-guide__card-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-blog-639club-latest-promotions-guide__promo-card p,
.page-blog-639club-latest-promotions-guide__step-card p,
.page-blog-639club-latest-promotions-guide__info-block p,
.page-blog-639club-latest-promotions-guide__category-card p {
  font-size: 0.95em;
  color: var(--text-main-color);
  margin-bottom: 20px;
}

.page-blog-639club-latest-promotions-guide__info-block {
  margin-top: 40px;
  padding: 30px;
}

.page-blog-639club-latest-promotions-guide__info-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-blog-639club-latest-promotions-guide__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-639club-latest-promotions-guide__tips-list li {
  background-color: var(--card-bg);
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  font-size: 1.05em;
  color: var(--text-main-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-blog-639club-latest-promotions-guide__tips-list li strong {
  color: var(--secondary-color);
}

.page-blog-639club-latest-promotions-guide__security-info {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  border: 1px solid var(--border-color);
}

.page-blog-639club-latest-promotions-guide__security-info p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: var(--text-main-color);
}

.page-blog-639club-latest-promotions-guide__security-info p strong {
  color: var(--secondary-color);
}

.page-blog-639club-latest-promotions-guide__faq-section {
  margin-top: 40px;
}

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

.page-blog-639club-latest-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-blog-639club-latest-promotions-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-blog-639club-latest-promotions-guide__faq-question h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1em; /* Adjust to fit parent font size */
}

.page-blog-639club-latest-promotions-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.page-blog-639club-latest-promotions-guide__faq-item.active .page-blog-639club-latest-promotions-guide__faq-toggle {
  transform: rotate(45deg); /* Plus to X (or use minus sign) */
}

.page-blog-639club-latest-promotions-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-main-color);
}

.page-blog-639club-latest-promotions-guide__faq-item.active .page-blog-639club-latest-promotions-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px 25px;
}

.page-blog-639club-latest-promotions-guide__faq-answer p {
  margin-bottom: 0;
}

.page-blog-639club-latest-promotions-guide__media-partners {
  padding: 60px 20px;
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
}

.page-blog-639club-latest-promotions-guide__partner-logo {
  width: 167px; /* Fixed width */
  height: 127px; /* Fixed height */
  object-fit: contain;
  filter: grayscale(100%); /* Optional: make logos grayscale */
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.page-blog-639club-latest-promotions-guide__partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-639club-latest-promotions-guide__main-title {
    font-size: 2.4em;
  }

  .page-blog-639club-latest-promotions-guide__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-blog-639club-latest-promotions-guide__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }

  .page-blog-639club-latest-promotions-guide__main-title {
    font-size: 1.8em;
  }

  .page-blog-639club-latest-promotions-guide__hero-description {
    font-size: 1em;
  }

  .page-blog-639club-latest-promotions-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-639club-latest-promotions-guide__btn-primary,
  .page-blog-639club-latest-promotions-guide__btn-secondary,
  .page-blog-639club-latest-promotions-guide__card-btn {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-639club-latest-promotions-guide__promo-grid,
  .page-blog-639club-latest-promotions-guide__steps-grid,
  .page-blog-639club-latest-promotions-guide__game-categories,
  .page-blog-639club-latest-promotions-guide__partners-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-639club-latest-promotions-guide__content-area,
  .page-blog-639club-latest-promotions-guide__media-partners {
    padding: 30px 15px;
  }

  .page-blog-639club-latest-promotions-guide__section-title {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  /* Mobile image responsiveness */
  .page-blog-639club-latest-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-639club-latest-promotions-guide__section,
  .page-blog-639club-latest-promotions-guide__card,
  .page-blog-639club-latest-promotions-guide__container,
  .page-blog-639club-latest-promotions-guide__promo-card,
  .page-blog-639club-latest-promotions-guide__step-card,
  .page-blog-639club-latest-promotions-guide__info-block,
  .page-blog-639club-latest-promotions-guide__category-card,
  .page-blog-639club-latest-promotions-guide__security-info,
  .page-blog-639club-latest-promotions-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-639club-latest-promotions-guide__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile: controlled by shared's media query */
  }

  .page-blog-639club-latest-promotions-guide__partner-logo {
    width: 120px; /* Adjust for smaller screens */
    height: 90px;
  }
}

@media (max-width: 480px) {
  .page-blog-639club-latest-promotions-guide__main-title {
    font-size: 1.5em;
  }

  .page-blog-639club-latest-promotions-guide__section-title {
    font-size: 1.4em;
  }

  .page-blog-639club-latest-promotions-guide__promo-card p,
  .page-blog-639club-latest-promotions-guide__step-card p,
  .page-blog-639club-latest-promotions-guide__info-block p,
  .page-blog-639club-latest-promotions-guide__category-card p,
  .page-blog-639club-latest-promotions-guide__text-block {
    font-size: 0.9em;
  }
}