/* style/promotions-first-deposit-bonus.css */
:root {
  --primary-color: #0A2239;
  --secondary-color: #FFD700;
  --accent-color: #DC143C;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #0A2239;
  --border-color: #e0e0e0;
}

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

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

.page-promotions-first-deposit-bonus__section {
  padding: 60px 0;
}

.page-promotions-first-deposit-bonus__section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions-first-deposit-bonus__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

/* Hero Banner */
.page-promotions-first-deposit-bonus__hero-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1A3B5C 100%);
  color: var(--text-light);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus__hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-promotions-first-deposit-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-promotions-first-deposit-bonus__hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-promotions-first-deposit-bonus__hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-promotions-first-deposit-bonus__hero-content a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px; 
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-first-deposit-bonus__cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__cta-button:hover {
  background-color: #e63946; /* Slightly darker accent */
  transform: translateY(-3px);
}

.page-promotions-first-deposit-bonus__cta-button--secondary {
  background-color: var(--primary-color);
}

.page-promotions-first-deposit-bonus__cta-button--secondary:hover {
  background-color: #1a3b5c;
}

/* About Section */
.page-promotions-first-deposit-bonus__about {
  background-color: var(--bg-light);
}

.page-promotions-first-deposit-bonus__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-promotions-first-deposit-bonus__text-content {
  flex: 1;
}

.page-promotions-first-deposit-bonus__text-content p {
  margin-bottom: 15px;
  font-size: 17px;
  color: var(--text-dark);
}

.page-promotions-first-deposit-bonus__text-content p a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__image-wrapper {
  flex: 1;
  min-width: 400px; /* Ensure images are not too small */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit-bonus__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Bonus Details & How-To Sections */
.page-promotions-first-deposit-bonus__bonus-details {
  background-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-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus__feature-item:hover {
  transform: translateY(-5px);
}

.page-promotions-first-deposit-bonus__feature-item h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__feature-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-promotions-first-deposit-bonus__how-to-claim {
  background-color: var(--bg-light);
}

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

.page-promotions-first-deposit-bonus__step-item {
  text-align: center;
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-promotions-first-deposit-bonus__step-item img {
  width: 150px; 
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-first-deposit-bonus__step-item h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus__step-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-promotions-first-deposit-bonus__step-item p a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Terms Section */
.page-promotions-first-deposit-bonus__terms {
  background-color: #f0f0f0;
}

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

.page-promotions-first-deposit-bonus__term-item {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-promotions-first-deposit-bonus__term-item h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__term-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-promotions-first-deposit-bonus__term-item p a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Tips Section */
.page-promotions-first-deposit-bonus__tips {
  background-color: var(--bg-light);
}

.page-promotions-first-deposit-bonus__tips .page-promotions-first-deposit-bonus__content-grid {
  flex-direction: row-reverse; /* Image on right, text on left */
}

.page-promotions-first-deposit-bonus__tips ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions-first-deposit-bonus__tips ul li {
  background-color: var(--text-light);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  font-size: 17px;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-first-deposit-bonus__tips ul li strong {
  color: var(--primary-color);
}

.page-promotions-first-deposit-bonus__tips ul li a {
  color: var(--primary-color);
  text-decoration: underline;
}

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

.page-promotions-first-deposit-bonus__safety .page-promotions-first-deposit-bonus__section-title {
  color: var(--secondary-color);
}

.page-promotions-first-deposit-bonus__safety .page-promotions-first-deposit-bonus__section-title::after {
  background-color: var(--text-light);
}

.page-promotions-first-deposit-bonus__safety p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

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

.page-promotions-first-deposit-bonus__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions-first-deposit-bonus__feature-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-promotions-first-deposit-bonus__feature-card h3 {
  color: var(--secondary-color);
  font-size: 22px;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus__feature-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.page-promotions-first-deposit-bonus__feature-card p a {
  color: var(--secondary-color);
  text-decoration: underline;
}

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

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

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

.page-promotions-first-deposit-bonus .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--text-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus .faq-question:hover {
  background: #f5f5f5;
}

.page-promotions-first-deposit-bonus .faq-question h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin: 0;
}

.page-promotions-first-deposit-bonus .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-first-deposit-bonus .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #f9f9f9;
  color: var(--text-dark);
}

.page-promotions-first-deposit-bonus .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-promotions-first-deposit-bonus .faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.page-promotions-first-deposit-bonus .faq-answer p a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Bottom CTA */
.page-promotions-first-deposit-bonus__cta-bottom {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1A3B5C 100%);
  color: var(--text-light);
  text-align: center;
  padding: 80px 20px;
}

.page-promotions-first-deposit-bonus__cta-content h2 {
  font-size: 42px;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.page-promotions-first-deposit-bonus__cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.page-promotions-first-deposit-bonus__cta-content p a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-first-deposit-bonus__hero-content h1 {
    font-size: 40px;
  }
  .page-promotions-first-deposit-bonus__hero-content p {
    font-size: 18px;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 30px;
  }
  .page-promotions-first-deposit-bonus__content-grid {
    flex-direction: column;
  }
  .page-promotions-first-deposit-bonus__image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-promotions-first-deposit-bonus__tips .page-promotions-first-deposit-bonus__content-grid {
    flex-direction: column;
  }
  .page-promotions-first-deposit-bonus__cta-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus__hero-banner {
    padding: 60px 15px;
  }
  .page-promotions-first-deposit-bonus__hero-content h1 {
    font-size: 32px;
  }
  .page-promotions-first-deposit-bonus__hero-content p {
    font-size: 16px;
  }
  .page-promotions-first-deposit-bonus__cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }
  .page-promotions-first-deposit-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-promotions-first-deposit-bonus__container {
    padding: 0 15px;
  }
  .page-promotions-first-deposit-bonus__feature-item h3,
  .page-promotions-first-deposit-bonus__term-item h3,
  .page-promotions-first-deposit-bonus__feature-card h3 {
    font-size: 20px;
  }
  .page-promotions-first-deposit-bonus__step-item img {
    width: 120px;
  }
  .page-promotions-first-deposit-bonus__step-item h3 {
    font-size: 20px;
  }
  .page-promotions-first-deposit-bonus .faq-question {
    padding: 15px 20px;
  }
  .page-promotions-first-deposit-bonus .faq-question h3 {
    font-size: 16px;
  }
  .page-promotions-first-deposit-bonus .faq-answer {
    padding: 0 20px;
  }
  .page-promotions-first-deposit-bonus .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-promotions-first-deposit-bonus__cta-bottom {
    padding: 60px 15px;
  }
  .page-promotions-first-deposit-bonus__cta-content h2 {
    font-size: 30px;
  }
  .page-promotions-first-deposit-bonus__cta-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-bonus__hero-content h1 {
    font-size: 28px;
  }
  .page-promotions-first-deposit-bonus__hero-content p {
    font-size: 15px;
  }
  .page-promotions-first-deposit-bonus__cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: 22px;
  }
  .page-promotions-first-deposit-bonus__feature-item h3,
  .page-promotions-first-deposit-bonus__term-item h3,
  .page-promotions-first-deposit-bonus__feature-card h3 {
    font-size: 18px;
  }
  .page-promotions-first-deposit-bonus__cta-content h2 {
    font-size: 26px;
  }
}