/* style/resources-99win-promotions-guide.css */
/* Base styles for the page content, ensuring BEM naming and adherence to color contrast */
.page-resources-99win-promotions-guide {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Main content background will be handled by sections */
}

.page-resources-99win-promotions-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-resources-99win-promotions-guide__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFD700; /* Gold color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-99win-promotions-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000; /* Deep red underline */
  border-radius: 2px;
}

.page-resources-99win-promotions-guide__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0; /* Slightly off-white for body text */
}

/* Hero Section */
.page-resources-99win-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero */
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  padding-bottom: 0;
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Fallback background */
}

.page-resources-99win-promotions-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-resources-99win-promotions-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* No filter property allowed */
}

.page-resources-99win-promotions-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background for text */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-99win-promotions-guide__hero-title {
  font-size: 52px;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-99win-promotions-guide__hero-description {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 400;
}

.page-resources-99win-promotions-guide__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-resources-99win-promotions-guide__hero-button:hover {
  background-color: #8B0000; /* Deep red on hover */
  color: #FFD700; /* Gold text on hover */
  transform: translateY(-3px);
  border-color: #FFD700;
}

/* Intro Section */
.page-resources-99win-promotions-guide__intro-section {
  background-color: #1a1a1a; /* Dark background for content sections */
  padding: 60px 0;
}

/* Promotions List Section */
.page-resources-99win-promotions-guide__promotions-list {
  background-color: #222222;
  padding: 60px 0;
}

.page-resources-99win-promotions-guide__promo-card {
  display: flex;
  align-items: center;
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-99win-promotions-guide__promo-card--reverse {
  flex-direction: row-reverse;
}

.page-resources-99win-promotions-guide__promo-image {
  flex: 1;
  min-width: 300px;
}

.page-resources-99win-promotions-guide__promo-image img {
  width: 100%;
  height: auto;
  display: block;
  /* No filter property allowed */
}

.page-resources-99win-promotions-guide__promo-content {
  flex: 1;
  padding: 30px;
  color: #ffffff;
}

.page-resources-99win-promotions-guide__promo-title {
  font-size: 28px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-resources-99win-promotions-guide__promo-description {
  font-size: 17px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-99win-promotions-guide__promo-button {
  display: inline-block;
  background-color: #8B0000; /* Deep red button */
  color: #FFD700; /* Gold text for contrast */
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #8B0000;
}

.page-resources-99win-promotions-guide__promo-button:hover {
  background-color: #FFD700; /* Gold on hover */
  color: #8B0000; /* Deep red text on hover */
  border-color: #FFD700;
}

/* How-to-Claim Section */
.page-resources-99win-promotions-guide__how-to-claim-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.page-resources-99win-promotions-guide__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-99win-promotions-guide__steps-list li {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #FFD700; /* Gold accent */
  border-radius: 5px;
  font-size: 18px;
  color: #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-99win-promotions-guide__steps-list li strong {
  color: #FFD700; /* Gold for strong text */
}

.page-resources-99win-promotions-guide__steps-list li a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
}

.page-resources-99win-promotions-guide__steps-list li a:hover {
  text-decoration: underline;
}

/* VIP Section */
.page-resources-99win-promotions-guide__vip-section {
  background-color: #222222;
  padding: 60px 0;
}

.page-resources-99win-promotions-guide__vip-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-resources-99win-promotions-guide__vip-text {
  flex: 1;
  color: #ffffff;
}

.page-resources-99win-promotions-guide__vip-benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.page-resources-99win-promotions-guide__vip-benefits-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #f0f0f0;
}

.page-resources-99win-promotions-guide__vip-benefits-list li::before {
  content: '★'; /* Star icon */
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold star */
  font-size: 20px;
  line-height: 1;
}

.page-resources-99win-promotions-guide__vip-benefits-list li strong {
  color: #FFD700;
}

.page-resources-99win-promotions-guide__vip-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-99win-promotions-guide__vip-text a:hover {
  text-decoration: underline;
}

.page-resources-99win-promotions-guide__vip-image {
  flex: 1;
  min-width: 300px;
}

.page-resources-99win-promotions-guide__vip-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  /* No filter property allowed */
}

.page-resources-99win-promotions-guide__vip-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-resources-99win-promotions-guide__vip-button:hover {
  background-color: #8B0000; /* Deep red on hover */
  color: #FFD700; /* Gold text on hover */
  transform: translateY(-3px);
  border-color: #FFD700;
}

/* Security Section */
.page-resources-99win-promotions-guide__security-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.page-resources-99win-promotions-guide__security-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-99win-promotions-guide__security-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #f0f0f0;
}

.page-resources-99win-promotions-guide__security-list li::before {
  content: '✓'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold checkmark */
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.page-resources-99win-promotions-guide__security-list li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-99win-promotions-guide__security-list li a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-resources-99win-promotions-guide__faq-section {
  background-color: #222222;
  padding: 60px 0;
}

/* FAQ container styles */
.page-resources-99win-promotions-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #2a2a2a; /* Darker background for FAQ items */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* FAQ default state - answer hidden */
.page-resources-99win-promotions-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px; /* Adjust padding for dark background */
  opacity: 0;
  color: #f0f0f0; /* Light text for answer */
  background: #333333; /* Slightly lighter dark background for answer */
  border-radius: 0 0 5px 5px;
  font-size: 17px;
}

/* FAQ expanded state - 🚨 Use!important and sufficiently large max-height */
.page-resources-99win-promotions-guide__faq-item.active .page-resources-99win-promotions-guide__faq-answer {
  max-height: 2000px !important; /* 🚨 Use!important ensure priority, value large enough to accommodate any content */
  padding: 20px 25px !important; /* Adjust padding for dark background */
  opacity: 1;
}

/* Question style */
.page-resources-99win-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px; /* Adjust padding for dark background */
  background: #2a2a2a; /* Dark background for question */
  border: 1px solid #3a3a3a; /* Darker border */
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-99win-promotions-guide__faq-question:hover {
  background: #333333; /* Slightly lighter dark on hover */
  border-color: #444444;
}