/* style/blog-iwinclub-app-promotions-analysis.css */

/* Base styles for the page content, ensuring contrast with assumed dark body background */
.page-blog-iwinclub-app-promotions-analysis {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-blog-iwinclub-app-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-iwinclub-app-promotions-analysis__hero-image-wrapper {
  width: 100%;
  height: 500px; /* Fixed height for hero image wrapper on desktop */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.page-blog-iwinclub-app-promotions-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-blog-iwinclub-app-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px; /* Space between image and text */
  background: rgba(17, 39, 27, 0.8); /* Card BG with transparency for readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: #F2FFF6;
}

.page-blog-iwinclub-app-promotions-analysis__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-iwinclub-app-promotions-analysis__lead-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* General Section Styles */
.page-blog-iwinclub-app-promotions-analysis__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.page-blog-iwinclub-app-promotions-analysis__sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-iwinclub-app-promotions-analysis__paragraph {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-blog-iwinclub-app-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-iwinclub-app-promotions-analysis__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-blog-iwinclub-app-promotions-analysis__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
  font-weight: bold;
}

/* Card Styles */
.page-blog-iwinclub-app-promotions-analysis__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%; /* Ensure cards in grid have equal height */
  box-sizing: border-box;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-iwinclub-app-promotions-analysis__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-iwinclub-app-promotions-analysis__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-blog-iwinclub-app-promotions-analysis__card-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Button Styles */
.page-blog-iwinclub-app-promotions-analysis__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  margin-top: auto; /* Push buttons to bottom of cards */
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-iwinclub-app-promotions-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff; /* White text for primary button */
  border: none;
}

.page-blog-iwinclub-app-promotions-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-blog-iwinclub-app-promotions-analysis__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Button color */
  border: 2px solid #2AD16F;
}

.page-blog-iwinclub-app-promotions-analysis__btn-secondary:hover {
  background: #2AD16F;
  color: #11271B;
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

/* Promotions Grid */
.page-blog-iwinclub-app-promotions-analysis__promotions-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-blog-iwinclub-app-promotions-analysis__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* How-To-Join Section */
.page-blog-iwinclub-app-promotions-analysis__how-to-join-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-iwinclub-app-promotions-analysis__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-blog-iwinclub-app-promotions-analysis__step-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-iwinclub-app-promotions-analysis__step-title {
  font-size: 1.3rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-blog-iwinclub-app-promotions-analysis__step-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Tips Section */
.page-blog-iwinclub-app-promotions-analysis__tips-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-iwinclub-app-promotions-analysis__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  width: 100%;
  max-width: 900px;
}

.page-blog-iwinclub-app-promotions-analysis__list-item {
  background-color: #11271B; /* Card BG */
  border-left: 5px solid #2AD16F; /* Button color */
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #F2FFF6; /* Text Main */
  border-right: 1px solid #2E7A4E;
  border-top: 1px solid #2E7A4E;
  border-bottom: 1px solid #2E7A4E;
}

.page-blog-iwinclub-app-promotions-analysis__list-item-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-blog-iwinclub-app-promotions-analysis__list-item-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-iwinclub-app-promotions-analysis__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-blog-iwinclub-app-promotions-analysis__faq-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-iwinclub-app-promotions-analysis__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-iwinclub-app-promotions-analysis__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-blog-iwinclub-app-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-blog-iwinclub-app-promotions-analysis__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border with transparency */
}

.page-blog-iwinclub-app-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-blog-iwinclub-app-promotions-analysis__faq-item[open] .page-blog-iwinclub-app-promotions-analysis__faq-toggle {
  content: '−';
}

.page-blog-iwinclub-app-promotions-analysis__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-iwinclub-app-promotions-analysis__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-iwinclub-app-promotions-analysis__faq-item summary {
  list-style: none;
}

/* Conclusion Section */
.page-blog-iwinclub-app-promotions-analysis__conclusion-section {
  padding: 60px 0;
  text-align: center;
  background-color: #08160F; /* Background */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-iwinclub-app-promotions-analysis__hero-image-wrapper {
    height: 400px;
  }
  .page-blog-iwinclub-app-promotions-analysis__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-iwinclub-app-promotions-analysis__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  /* General mobile text and padding adjustments */
  .page-blog-iwinclub-app-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-iwinclub-app-promotions-analysis__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Hero Section */
  .page-blog-iwinclub-app-promotions-analysis__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-iwinclub-app-promotions-analysis__hero-image-wrapper {
    height: 300px;
  }
  .page-blog-iwinclub-app-promotions-analysis__hero-content {
    padding: 30px 15px;
    margin-top: 15px;
  }
  .page-blog-iwinclub-app-promotions-analysis__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-blog-iwinclub-app-promotions-analysis__lead-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  /* Section titles and subtitles */
  .page-blog-iwinclub-app-promotions-analysis__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .page-blog-iwinclub-app-promotions-analysis__sub-title {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  /* Card and Grid Layouts */
  .page-blog-iwinclub-app-promotions-analysis__promo-grid,
  .page-blog-iwinclub-app-promotions-analysis__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-iwinclub-app-promotions-analysis__card {
    padding: 20px;
  }
  .page-blog-iwinclub-app-promotions-analysis__card-image {
    height: 200px;
  }
  .page-blog-iwinclub-app-promotions-analysis__card-title {
    font-size: 1.3rem;
  }

  /* List items */
  .page-blog-iwinclub-app-promotions-analysis__list-item {
    padding: 15px;
  }
  .page-blog-iwinclub-app-promotions-analysis__list-item-title {
    font-size: 1.2rem;
  }

  /* FAQ */
  .page-blog-iwinclub-app-promotions-analysis__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-blog-iwinclub-app-promotions-analysis__faq-answer {
    padding: 0 20px 15px;
  }

  /* Image responsive */
  .page-blog-iwinclub-app-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-iwinclub-app-promotions-analysis__section,
  .page-blog-iwinclub-app-promotions-analysis__card,
  .page-blog-iwinclub-app-promotions-analysis__container,
  .page-blog-iwinclub-app-promotions-analysis__hero-section,
  .page-blog-iwinclub-app-promotions-analysis__promotions-section,
  .page-blog-iwinclub-app-promotions-analysis__how-to-join-section,
  .page-blog-iwinclub-app-promotions-analysis__tips-section,
  .page-blog-iwinclub-app-promotions-analysis__faq-section,
  .page-blog-iwinclub-app-promotions-analysis__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Button responsive */
  .page-blog-iwinclub-app-promotions-analysis__cta-button,
  .page-blog-iwinclub-app-promotions-analysis__btn-primary,
  .page-blog-iwinclub-app-promotions-analysis__btn-secondary,
  .page-blog-iwinclub-app-promotions-analysis a[class*="button"],
  .page-blog-iwinclub-app-promotions-analysis a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-iwinclub-app-promotions-analysis__cta-buttons,
  .page-blog-iwinclub-app-promotions-analysis__button-group,
  .page-blog-iwinclub-app-promotions-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-iwinclub-app-promotions-analysis__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* Video responsive - not used in this page, but for completeness */
  .page-blog-iwinclub-app-promotions-analysis video,
  .page-blog-iwinclub-app-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-iwinclub-app-promotions-analysis__video-section,
  .page-blog-iwinclub-app-promotions-analysis__video-container,
  .page-blog-iwinclub-app-promotions-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-iwinclub-app-promotions-analysis__video-section {
    padding-top: 10px !important;
  }
  .page-blog-iwinclub-app-promotions-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-blog-iwinclub-app-promotions-analysis__hero-image-wrapper {
    height: 250px;
  }
  .page-blog-iwinclub-app-promotions-analysis__main-title {
    font-size: clamp(1.5rem, 9vw, 2.2rem);
  }
  .page-blog-iwinclub-app-promotions-analysis__section-title {
    font-size: 1.6rem;
  }
  .page-blog-iwinclub-app-promotions-analysis__lead-text {
    font-size: 0.9rem;
  }
  .page-blog-iwinclub-app-promotions-analysis__cta-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}