/* style/promotions-first-deposit-bonus.css */
:root {
  --primary-color: #E53935;
  --secondary-color: #FF5A4F;
  --card-bg: #FFFFFF;
  --page-bg: #F5F7FA;
  --text-main: #333333;
  --border-color: #E0E0E0;
}

.page-promotions-first-deposit-bonus {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--page-bg);
}

.page-promotions-first-deposit-bonus__section {
  padding: 60px 0;
  background-color: var(--page-bg);
  color: var(--text-main);
}

.page-promotions-first-deposit-bonus__light-bg {
  background-color: var(--page-bg);
  color: var(--text-main);
}

.page-promotions-first-deposit-bonus__card-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-promotions-first-deposit-bonus__dark-bg {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-promotions-first-deposit-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-first-deposit-bonus__heading {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions-first-deposit-bonus__sub-heading {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus__text-main {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-promotions-first-deposit-bonus__text-main--center {
  text-align: center;
}

.page-promotions-first-deposit-bonus__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-promotions-first-deposit-bonus__list--ordered {
  list-style: decimal;
}

.page-promotions-first-deposit-bonus__list li {
  margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__list-highlight {
  color: var(--primary-color);
}

/* Hero Section */
.page-promotions-first-deposit-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-bg);
}

.page-promotions-first-deposit-bonus__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-first-deposit-bonus__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions-first-deposit-bonus__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-first-deposit-bonus__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions-first-deposit-bonus__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-first-deposit-bonus__description {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-first-deposit-bonus__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-first-deposit-bonus__cta-button:hover {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__cta-button--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  width: fit-content;
  max-width: 100%;
}

/* Bonus Details Section */
.page-promotions-first-deposit-bonus__details-section {
  background-color: var(--card-bg);
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-promotions-first-deposit-bonus__card {
  background: var(--card-bg);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Games Section */
.page-promotions-first-deposit-bonus__games-section {
  background-color: var(--page-bg);
}

.page-promotions-first-deposit-bonus__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-first-deposit-bonus__game-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-first-deposit-bonus__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus__game-card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 6px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-promotions-first-deposit-bonus__game-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__game-description {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-first-deposit-bonus__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

/* Safety Section */
.page-promotions-first-deposit-bonus__safety-section {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-promotions-first-deposit-bonus__safety-section .page-promotions-first-deposit-bonus__heading {
  color: #ffffff;
}

.page-promotions-first-deposit-bonus__safety-section .page-promotions-first-deposit-bonus__text-main {
  color: #f0f0f0;
}

.page-promotions-first-deposit-bonus__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-first-deposit-bonus__feature-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__feature-description {
  font-size: 15px;
  color: #f0f0f0;
}

/* FAQ Section */
.page-promotions-first-deposit-bonus__faq-section {
  background-color: var(--page-bg);
}

.page-promotions-first-deposit-bonus__faq-list {
  margin-top: 40px;
}

details.page-promotions-first-deposit-bonus__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
}
details.page-promotions-first-deposit-bonus__faq-item summary.page-promotions-first-deposit-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-promotions-first-deposit-bonus__faq-item summary.page-promotions-first-deposit-bonus__faq-question::-webkit-details-marker {
  display: none;
}
details.page-promotions-first-deposit-bonus__faq-item summary.page-promotions-first-deposit-bonus__faq-question:hover {
  background: #f5f5f5;
}
.page-promotions-first-deposit-bonus__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}
.page-promotions-first-deposit-bonus__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-promotions-first-deposit-bonus__faq-item .page-promotions-first-deposit-bonus__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-main);
}

/* Final CTA Section */
.page-promotions-first-deposit-bonus__cta-final-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--primary-color);
}

.page-promotions-first-deposit-bonus__cta-final-section .page-promotions-first-deposit-bonus__heading {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus__cta-final-section .page-promotions-first-deposit-bonus__text-main {
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Image Optimization */
.page-promotions-first-deposit-bonus img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions-first-deposit-bonus__image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.page-promotions-first-deposit-bonus__image-wrapper img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: inline-block; /* For centering */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-first-deposit-bonus__heading {
    font-size: 32px;
  }
  .page-promotions-first-deposit-bonus__sub-heading {
    font-size: 22px;
  }
  .page-promotions-first-deposit-bonus__text-main {
    font-size: 15px;
  }
  .page-promotions-first-deposit-bonus__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions-first-deposit-bonus__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions-first-deposit-bonus__hero-image img {
    border-radius: 4px;
  }
  
  .page-promotions-first-deposit-bonus__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions-first-deposit-bonus__cta-button--center {
    width: 100%;
  }

  .page-promotions-first-deposit-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-first-deposit-bonus__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions-first-deposit-bonus__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-promotions-first-deposit-bonus__sub-heading {
    font-size: 20px;
  }
  .page-promotions-first-deposit-bonus__card {
    padding: 20px;
    margin-bottom: 20px;
  }
  .page-promotions-first-deposit-bonus__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-first-deposit-bonus__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-first-deposit-bonus__feature-item {
    padding: 20px;
  }
  .page-promotions-first-deposit-bonus__feature-title {
    font-size: 20px;
  }

  .page-promotions-first-deposit-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions-first-deposit-bonus__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  details.page-promotions-first-deposit-bonus__faq-item summary.page-promotions-first-deposit-bonus__faq-question {
    padding: 15px;
  }
  .page-promotions-first-deposit-bonus__faq-qtext {
    font-size: 15px;
  }
  details.page-promotions-first-deposit-bonus__faq-item .page-promotions-first-deposit-bonus__faq-answer {
    padding: 0 15px 15px;
  }
  .page-promotions-first-deposit-bonus__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Contrast fix for mobile */
  .page-promotions-first-deposit-bonus__contrast-fix {
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e0e0e0 !important;
  }
  .page-promotions-first-deposit-bonus__text-contrast-fix {
    color: #333333 !important;
    text-shadow: none !important;
  }
}

/* Contrast classes for dynamic background colors */
.page-promotions-first-deposit-bonus__dark-bg-text-light {
  color: #ffffff;
}

.page-promotions-first-deposit-bonus__light-bg-text-dark {
  color: #333333;
}

/* Contrast fix for emergency */
.page-promotions-first-deposit-bonus__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-promotions-first-deposit-bonus__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}