/* style/promotions.css */
/* Base styles for the promotions page */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  line-height: 1.6;
  font-size: 16px;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* CTA Button Styles */
.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #121212; /* Dark text for gold background */
  border: 2px solid #FFD700;
}

.page-promotions__btn-primary:hover {
  background-color: #e6c200;
  color: #121212;
  border-color: #e6c200;
}

.page-promotions__btn-secondary {
  background-color: #8B0000; /* Dark Red */
  color: #ffffff; /* White text for dark red background */
  border: 2px solid #8B0000;
}

.page-promotions__btn-secondary:hover {
  background-color: #6a0000;
  color: #ffffff;
  border-color: #6a0000;
}

.page-promotions__center-button {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 300px;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #1a1a1a;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim image for text readability */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-promotions__hero-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Video Section */
.page-promotions__video-section {
  background-color: #0d0d0d;
  padding: 80px 0;
  text-align: center;
}

.page-promotions__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px auto;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
}

.page-promotions__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-promotions__video-cta {
  margin-top: 30px;
}

/* Promotions Grid Section */
.page-promotions__content-section {
  padding: 80px 0;
}

.page-promotions__dark-bg {
  background-color: #1a1a1a; /* Dark background for sections */
}

.page-promotions__light-bg {
  background-color: #2a2a2a; /* Slightly lighter dark background */
}

.page-promotions__promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__promo-card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-text {
  color: #e0e0e0;
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* VIP Section */
.page-promotions__vip-section {
  padding: 80px 0;
  background-color: #8B0000; /* Dark Red background */
  color: #ffffff;
}

.page-promotions__vip-section .page-promotions__section-title {
  color: #FFD700; /* Gold title on dark red */
}

.page-promotions__vip-section .page-promotions__section-description {
  color: #f0f0f0;
}

.page-promotions__vip-section .page-promotions__cta-button {
  background-color: #FFD700;
  color: #121212;
  border-color: #FFD700;
}

.page-promotions__vip-section .page-promotions__cta-button:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-promotions__vip-section .page-promotions__container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-promotions__vip-content {
  flex: 1;
}

.page-promotions__vip-benefits {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__vip-benefits li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 1.1em;
}

.page-promotions__vip-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__vip-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: block;
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-promotions__how-to-claim-section .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__how-to-claim-section .page-promotions__section-description {
  color: #f0f0f0;
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-promotions__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__step-text {
  color: #e0e0e0;
  font-size: 1em;
}

.page-promotions__step-text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__step-text a:hover {
  color: #e6c200;
}

/* Terms & Conditions Section */
.page-promotions__terms-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-promotions__terms-section .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__terms-section .page-promotions__section-description {
  color: #f0f0f0;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>') no-repeat left top 5px;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-promotions__terms-list li strong {
  color: #FFD700;
}

.page-promotions__note-text {
  text-align: center;
  margin-top: 30px;
  color: #aaaaaa;
}

.page-promotions__note-text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__note-text a:hover {
  color: #e6c200;
}

/* Responsible Gaming Section */
.page-promotions__responsible-gaming-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-promotions__responsible-gaming-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-direction: row; /* Default desktop layout */
}

.page-promotions__responsible-gaming-content {
  flex: 1;
}

.page-promotions__responsible-gaming-content .page-promotions__section-title {
  text-align: left;
  color: #FFD700;
}

.page-promotions__responsible-gaming-content .page-promotions__section-description {
  text-align: left;
  color: #f0f0f0;
}

.page-promotions__responsible-gaming-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__responsible-gaming-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-promotions__responsible-gaming-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__responsible-gaming-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: block;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-promotions__faq-section .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__faq-list {
  max-width: 800px;
  margin: 50px auto 0 auto;
}

.page-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: #2a2a2a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #3a3a3a;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}