/* style/promotions-first-deposit-bonus-details.css */

:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --bg-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
}

/* Base styles for the page */
.page-promotions-first-deposit-bonus-details {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Ensure text is visible on dark body background */
  background-color: var(--bg-color);
}

/* Section common styles */
.page-promotions-first-deposit-bonus-details__section {
  padding: 60px 20px;
  background-color: var(--bg-color);
  color: var(--text-main-color);
}

.page-promotions-first-deposit-bonus-details__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-promotions-first-deposit-bonus-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-promotions-first-deposit-bonus-details__text-block {
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-first-deposit-bonus-details__highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

/* Hero Section */
.page-promotions-first-deposit-bonus-details__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

.page-promotions-first-deposit-bonus-details__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit height for aesthetic */
  margin-bottom: 30px;
}

.page-promotions-first-deposit-bonus-details__hero-content {
  position: relative;
  z-index: 1;
  padding: 0 15px;
  max-width: 900px;
}

.page-promotions-first-deposit-bonus-details__main-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-promotions-first-deposit-bonus-details__description {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-main-color);
  margin-bottom: 30px;
}

/* Buttons */
.page-promotions-first-deposit-bonus-details__btn-primary,
.page-promotions-first-deposit-bonus-details__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-first-deposit-bonus-details__btn-primary {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 132, 26, 0.4);
}

.page-promotions-first-deposit-bonus-details__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 132, 26, 0.6);
}

.page-promotions-first-deposit-bonus-details__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  margin-left: 20px;
}

.page-promotions-first-deposit-bonus-details__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--bg-color);
}

.page-promotions-first-deposit-bonus-details__btn-link {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.page-promotions-first-deposit-bonus-details__btn-link:hover {
  color: var(--glow-color);
}

/* Intro Section */
.page-promotions-first-deposit-bonus-details__intro-section .page-promotions-first-deposit-bonus-details__btn-secondary {
  margin-top: 30px;
  margin-left: 0;
}

/* Details Section */
.page-promotions-first-deposit-bonus-details__details-section {
  background-color: var(--card-bg);
}

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

.page-promotions-first-deposit-bonus-details__card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus-details__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(var(--glow-color), 0.5);
}

.page-promotions-first-deposit-bonus-details__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-first-deposit-bonus-details__card-title {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus-details__card-text {
  font-size: 1rem;
  color: var(--text-main-color);
}

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

.page-promotions-first-deposit-bonus-details__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-first-deposit-bonus-details__list-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--text-main-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus-details__list-item strong {
  color: var(--secondary-color);
}

/* Guide Section */
.page-promotions-first-deposit-bonus-details__guide-section {
  background-color: var(--card-bg);
}

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

.page-promotions-first-deposit-bonus-details__step-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page-promotions-first-deposit-bonus-details__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(255, 132, 26, 0.5);
}

.page-promotions-first-deposit-bonus-details__step-title {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus-details__step-text {
  font-size: 1rem;
  color: var(--text-main-color);
}

.page-promotions-first-deposit-bonus-details__cta-container {
  text-align: center;
  margin-top: 50px;
}

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

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

.page-promotions-first-deposit-bonus-details__benefit-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus-details__benefit-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-first-deposit-bonus-details__benefit-title {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus-details__benefit-text {
  font-size: 1rem;
  color: var(--text-main-color);
}

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

.page-promotions-first-deposit-bonus-details__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions-first-deposit-bonus-details__faq-item {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus-details__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--secondary-color);
  cursor: pointer;
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus-details__faq-question:hover {
  background-color: rgba(var(--secondary-color), 0.1);
}

.page-promotions-first-deposit-bonus-details__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color);
}

.page-promotions-first-deposit-bonus-details__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: var(--text-main-color);
  line-height: 1.7;
  /* For details tag, browser handles visibility. For custom JS, use max-height/overflow */
}

.page-promotions-first-deposit-bonus-details__faq-item[open] .page-promotions-first-deposit-bonus-details__faq-question {
  background-color: rgba(var(--secondary-color), 0.1);
}

/* Hide default details marker */
.page-promotions-first-deposit-bonus-details__faq-item summary {
  list-style: none;
}

.page-promotions-first-deposit-bonus-details__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Final CTA Section */
.page-promotions-first-deposit-bonus-details__cta-final-section {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--bg-color);
}

.page-promotions-first-deposit-bonus-details__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-first-deposit-bonus-details__hero-image {
    max-height: 500px;
  }

  .page-promotions-first-deposit-bonus-details__main-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  .page-promotions-first-deposit-bonus-details__description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
  }

  .page-promotions-first-deposit-bonus-details__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus-details__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-promotions-first-deposit-bonus-details__hero-image {
    max-height: 400px;
    margin-bottom: 20px;
  }

  .page-promotions-first-deposit-bonus-details__main-title {
    font-size: 2.2rem;
  }

  .page-promotions-first-deposit-bonus-details__description {
    font-size: 1rem;
  }

  .page-promotions-first-deposit-bonus-details__section {
    padding: 40px 15px;
  }

  .page-promotions-first-deposit-bonus-details__text-block {
    font-size: 1rem;
  }

  .page-promotions-first-deposit-bonus-details__grid,
  .page-promotions-first-deposit-bonus-details__steps-grid,
  .page-promotions-first-deposit-bonus-details__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-first-deposit-bonus-details__card,
  .page-promotions-first-deposit-bonus-details__step-card,
  .page-promotions-first-deposit-bonus-details__benefit-card {
    padding: 20px;
  }

  .page-promotions-first-deposit-bonus-details__card-image,
  .page-promotions-first-deposit-bonus-details__benefit-image {
    min-width: unset;
    min-height: unset;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-first-deposit-bonus-details__list-item {
    padding: 15px;
    font-size: 1rem;
  }

  .page-promotions-first-deposit-bonus-details__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-promotions-first-deposit-bonus-details__faq-answer {
    font-size: 0.95rem;
    padding: 0 15px 15px 15px;
  }

  .page-promotions-first-deposit-bonus-details__btn-primary,
  .page-promotions-first-deposit-bonus-details__btn-secondary {
    font-size: 1rem;
    padding: 12px 20px;
    margin-left: 0;
    margin-right: 0;
    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-details__button-group {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure all images are responsive */
  .page-promotions-first-deposit-bonus-details img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-first-deposit-bonus-details__section,
  .page-promotions-first-deposit-bonus-details__card,
  .page-promotions-first-deposit-bonus-details__container,
  .page-promotions-first-deposit-bonus-details__list-item,
  .page-promotions-first-deposit-bonus-details__step-card,
  .page-promotions-first-deposit-bonus-details__benefit-card,
  .page-promotions-first-deposit-bonus-details__faq-item,
  .page-promotions-first-deposit-bonus-details__button-group,
  .page-promotions-first-deposit-bonus-details__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-promotions-first-deposit-bonus-details__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}