/* style/promotions-new-user-bonus.css */

/* Custom Colors */
:root {
  --ev99-primary: #11A84E;
  --ev99-secondary: #22C768;
  --ev99-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --ev99-card-bg: #11271B;
  --ev99-background: #08160F;
  --ev99-text-main: #F2FFF6;
  --ev99-text-secondary: #A7D9B8;
  --ev99-border: #2E7A4E;
  --ev99-glow: #57E38D;
  --ev99-gold: #F2C14E;
  --ev99-divider: #1E3A2A;
  --ev99-deep-green: #0A4B2C;
}

/* Base styles for the page content */
.page-promotions-new-user-bonus {
  background-color: var(--ev99-background); /* Dark background */
  color: var(--ev99-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions-new-user-bonus a {
  color: var(--ev99-secondary);
  text-decoration: none;
}

.page-promotions-new-user-bonus a:hover {
  text-decoration: underline;
}

.page-promotions-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: var(--ev99-background);
  color: var(--ev99-text-main);
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.8); /* Slightly dim the image for text contrast */
  border-radius: 8px;
}

.page-promotions-new-user-bonus__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1; /* Ensure content is above image if any overlap */
  margin-top: -100px; /* Pull content slightly over image for visual flow */
  position: relative;
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ev99-text-main);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--ev99-text-secondary);
}

/* Section Titles */
.page-promotions-new-user-bonus__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ev99-text-main);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promotions-new-user-bonus__sub-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--ev99-text-main);
  margin-top: 30px;
  margin-bottom: 25px;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 1rem;
  color: var(--ev99-text-secondary);
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__highlight {
  color: var(--ev99-gold);
  font-weight: bold;
}

/* Buttons */
.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-primary {
  background: var(--ev99-button-gradient);
  color: var(--ev99-text-main);
  border: 2px solid var(--ev99-primary);
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
  transform: translateY(-2px);
}

.page-promotions-new-user-bonus__btn-secondary {
  background: transparent;
  color: var(--ev99-secondary);
  border: 2px solid var(--ev99-secondary);
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: var(--ev99-secondary);
  color: var(--ev99-background);
  transform: translateY(-2px);
}

/* Content Area */
.page-promotions-new-user-bonus__content-area {
  padding: 60px 20px;
  background-color: var(--ev99-card-bg);
  color: var(--ev99-text-main);
}

.page-promotions-new-user-bonus__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px auto;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-new-user-bonus__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-new-user-bonus__benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--ev99-text-secondary);
}

.page-promotions-new-user-bonus__list-icon {
  font-size: 1.2rem;
  color: var(--ev99-gold);
  margin-right: 10px;
  flex-shrink: 0;
}

.page-promotions-new-user-bonus__list-strong {
  color: var(--ev99-text-main);
}

/* How To Claim Section */
.page-promotions-new-user-bonus__how-to-claim {
  padding: 60px 20px;
  background-color: var(--ev99-background);
  color: var(--ev99-text-main);
}

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

.page-promotions-new-user-bonus__step-card {
  background-color: var(--ev99-card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-bonus__step-icon {
  background-color: var(--ev99-primary);
  color: var(--ev99-text-main);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  border: 3px solid var(--ev99-gold);
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.3rem;
  color: var(--ev99-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-new-user-bonus__step-description {
  font-size: 0.95rem;
  color: var(--ev99-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-new-user-bonus__step-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 15px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-new-user-bonus__step-button {
  margin-top: auto; /* Push button to bottom */
}

/* Terms & Conditions Section */
.page-promotions-new-user-bonus__terms-conditions {
  padding: 60px 20px;
  background-color: var(--ev99-card-bg);
  color: var(--ev99-text-main);
}

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

.page-promotions-new-user-bonus__term-item {
  background-color: var(--ev99-deep-green);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--ev99-border);
}

.page-promotions-new-user-bonus__term-title {
  font-size: 1.2rem;
  color: var(--ev99-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-new-user-bonus__term-description {
  font-size: 0.95rem;
  color: var(--ev99-text-secondary);
}

.page-promotions-new-user-bonus__read-more-btn {
  margin-top: 40px;
}

/* Why Choose Section */
.page-promotions-new-user-bonus__why-choose {
  padding: 60px 20px;
  background-color: var(--ev99-background);
  color: var(--ev99-text-main);
}

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

.page-promotions-new-user-bonus__feature-item {
  background-color: var(--ev99-card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--ev99-border);
}

.page-promotions-new-user-bonus__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-new-user-bonus__feature-title {
  font-size: 1.25rem;
  color: var(--ev99-text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-new-user-bonus__feature-description {
  font-size: 0.95rem;
  color: var(--ev99-text-secondary);
}

/* Other Promotions Section */
.page-promotions-new-user-bonus__other-promotions {
  padding: 60px 20px;
  background-color: var(--ev99-card-bg);
  color: var(--ev99-text-main);
}

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

.page-promotions-new-user-bonus__promotion-card {
  background-color: var(--ev99-deep-green);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--ev99-border);
}

.page-promotions-new-user-bonus__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-new-user-bonus__promo-title {
  font-size: 1.2rem;
  color: var(--ev99-text-main);
  margin: 20px 20px 10px;
  font-weight: 600;
}

.page-promotions-new-user-bonus__promo-title a {
  color: inherit;
  text-decoration: none;
}

.page-promotions-new-user-bonus__promo-title a:hover {
  text-decoration: underline;
}

.page-promotions-new-user-bonus__promo-description {
  font-size: 0.95rem;
  color: var(--ev99-text-secondary);
  padding: 0 20px 20px;
}

.page-promotions-new-user-bonus__all-promos-btn {
  margin-top: 40px;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
  padding: 60px 20px;
  background-color: var(--ev99-background);
  color: var(--ev99-text-main);
}

.page-promotions-new-user-bonus__faq-list {
  margin-top: 40px;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: var(--ev99-card-bg);
  border: 1px solid var(--ev99-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-new-user-bonus__faq-item summary {
  list-style: none; /* Remove default marker */
}

.page-promotions-new-user-bonus__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit browsers */
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ev99-text-main);
  cursor: pointer;
  background-color: var(--ev99-deep-green);
  border-bottom: 1px solid var(--ev99-border);
}

.page-promotions-new-user-bonus__faq-question:hover {
  background-color: var(--ev99-primary);
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--ev99-gold);
  margin-left: 15px;
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 20px;
  font-size: 0.95rem;
  color: var(--ev99-text-secondary);
  background-color: var(--ev99-card-bg);
}

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-question {
  border-bottom: none;
}

/* CTA Section */
.page-promotions-new-user-bonus__cta-section {
  padding: 60px 20px;
  background-color: var(--ev99-primary);
  color: var(--ev99-text-main);
  text-align: center;
  border-radius: 0 0 8px 8px;
}

.page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__btn-primary {
  background: var(--ev99-button-gradient);
  border-color: var(--ev99-text-main);
  color: var(--ev99-text-main);
}

.page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__btn-secondary {
  background: var(--ev99-text-main);
  border-color: var(--ev99-text-main);
  color: var(--ev99-primary);
}

.page-promotions-new-user-bonus__cta-section .page-promotions-new-user-bonus__btn-secondary:hover {
  background: var(--ev99-text-secondary);
  color: var(--ev99-deep-green);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-content {
    margin-top: -50px; /* Adjust margin for mobile */
    padding: 20px 15px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-promotions-new-user-bonus__intro-text {
    font-size: 1rem;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__sub-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .page-promotions-new-user-bonus__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__content-area,
  .page-promotions-new-user-bonus__how-to-claim,
  .page-promotions-new-user-bonus__terms-conditions,
  .page-promotions-new-user-bonus__why-choose,
  .page-promotions-new-user-bonus__other-promotions,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__cta-section {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Images and their containers */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-promotions-new-user-bonus__hero-image-wrapper,
  .page-promotions-new-user-bonus__step-image,
  .page-promotions-new-user-bonus__promo-image,
  .page-promotions-new-user-bonus__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions-new-user-bonus__feature-icon {
    width: 100px !important;
    height: 100px !important;
    min-width: 100px !important;
    min-height: 100px !important;
  }

  .page-promotions-new-user-bonus__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-promotions-new-user-bonus__faq-answer {
    padding: 15px;
  }
}

/* Ensure no filter on images */
.page-promotions-new-user-bonus img {
  filter: none; /* Reset any potential filter */
}

.page-promotions-new-user-bonus__hero-image {
  filter: brightness(0.8); /* Specific hero image filter allowed for contrast */
}

/* Ensure text contrast for dark background */
.page-promotions-new-user-bonus__dark-bg {
  color: var(--ev99-text-main);
}

.page-promotions-new-user-bonus__light-bg {
  color: var(--ev99-text-main);
}

.page-promotions-new-user-bonus__card {
  background-color: var(--ev99-card-bg);
  color: var(--ev99-text-main);
}

.page-promotions-new-user-bonus p,
.page-promotions-new-user-bonus li {
  color: var(--ev99-text-secondary);
}

.page-promotions-new-user-bonus__step-title,
.page-promotions-new-user-bonus__term-title,
.page-promotions-new-user-bonus__feature-title,
.page-promotions-new-user-bonus__promo-title {
  color: var(--ev99-text-main);
}

.page-promotions-new-user-bonus__faq-question .page-promotions-new-user-bonus__faq-qtext {
  color: var(--ev99-text-main);
}