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

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

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

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

.page-promotions-new-user-bonus__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--e2bet-text-main);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions-new-user-bonus__section-description {
  font-size: 18px;
  color: var(--e2bet-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--e2bet-gold);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--e2bet-text-secondary);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-new-user-bonus__btn-primary,
.page-promotions-new-user-bonus__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__btn-primary {
  background: var(--e2bet-button-gradient);
  color: var(--e2bet-text-main);
  border: 2px solid transparent;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

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

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: rgba(17, 168, 78, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.page-promotions-new-user-bonus__benefits-section {
  padding: 80px 0;
  background-color: var(--e2bet-bg);
  color: var(--e2bet-text-main);
}

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

.page-promotions-new-user-bonus__benefit-card {
  background-color: var(--e2bet-card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid var(--e2bet-border);
}

.page-promotions-new-user-bonus__benefit-card:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user-bonus__benefit-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-new-user-bonus__benefit-title {
  font-size: 24px;
  color: var(--e2bet-gold);
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__benefit-text {
  font-size: 16px;
  color: var(--e2bet-text-secondary);
}

/* How to Claim Section */
.page-promotions-new-user-bonus__how-to-claim-section {
  padding: 80px 0;
  background-color: var(--e2bet-deep-green);
  color: var(--e2bet-text-main);
}

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

.page-promotions-new-user-bonus__step-card {
  background-color: var(--e2bet-card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--e2bet-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-new-user-bonus__step-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--e2bet-primary);
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 22px;
  color: var(--e2bet-gold);
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__step-text {
  font-size: 16px;
  color: var(--e2bet-text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions-new-user-bonus__step-btn {
  width: 100%;
  margin-top: auto;
}

/* Games Section */
.page-promotions-new-user-bonus__games-section {
  padding: 80px 0;
  background-color: var(--e2bet-bg);
  color: var(--e2bet-text-main);
}

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

.page-promotions-new-user-bonus__game-card {
  background-color: var(--e2bet-card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid var(--e2bet-border);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-promotions-new-user-bonus__game-card:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user-bonus__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: block;
}

.page-promotions-new-user-bonus__game-title {
  font-size: 22px;
  color: var(--e2bet-gold);
  padding: 20px 15px 10px;
}

.page-promotions-new-user-bonus__game-text {
  font-size: 16px;
  color: var(--e2bet-text-secondary);
  padding: 0 15px 20px;
  flex-grow: 1;
}

/* Security Section */
.page-promotions-new-user-bonus__security-section {
  padding: 80px 0;
  background-color: var(--e2bet-deep-green);
  color: var(--e2bet-text-main);
}

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

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

.page-promotions-new-user-bonus__feature-title {
  font-size: 24px;
  color: var(--e2bet-primary);
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__feature-text {
  font-size: 16px;
  color: var(--e2bet-text-secondary);
}

.page-promotions-new-user-bonus__security-btn {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
  padding: 80px 0;
  background-color: var(--e2bet-bg);
  color: var(--e2bet-text-main);
}

.page-promotions-new-user-bonus__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-question {
  border-bottom: 1px solid var(--e2bet-primary);
}

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--e2bet-primary);
}

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

/* Final CTA Section */
.page-promotions-new-user-bonus__cta-final-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--e2bet-deep-green);
  color: var(--e2bet-text-main);
}

.page-promotions-new-user-bonus__large-btn {
  padding: 18px 40px;
  font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-image-wrapper {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-new-user-bonus__hero-section,
  .page-promotions-new-user-bonus__benefits-section,
  .page-promotions-new-user-bonus__how-to-claim-section,
  .page-promotions-new-user-bonus__games-section,
  .page-promotions-new-user-bonus__security-section,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__cta-final-section {
    padding: 40px 0;
  }

  .page-promotions-new-user-bonus__container {
    padding: 0 15px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(30px, 7vw, 45px);
  }

  .page-promotions-new-user-bonus__hero-description {
    font-size: clamp(16px, 3.5vw, 20px);
    margin-bottom: 30px;
  }

  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-new-user-bonus__benefits-grid,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__games-grid,
  .page-promotions-new-user-bonus__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__benefit-card,
  .page-promotions-new-user-bonus__step-card,
  .page-promotions-new-user-bonus__game-card,
  .page-promotions-new-user-bonus__feature-item {
    padding: 20px;
  }

  .page-promotions-new-user-bonus__game-image {
    height: 180px;
  }

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

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

  /* Mobile specific image handling */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-new-user-bonus__hero-image-wrapper,
  .page-promotions-new-user-bonus__benefits-section,
  .page-promotions-new-user-bonus__how-to-claim-section,
  .page-promotions-new-user-bonus__games-section,
  .page-promotions-new-user-bonus__security-section,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__cta-final-section,
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__cta-buttons,
  .page-promotions-new-user-bonus__button-group,
  .page-promotions-new-user-bonus__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no horizontal overflow */
  }

  .page-promotions-new-user-bonus__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-promotions-new-user-bonus__hero-image {
    min-width: 200px;
    min-height: 200px;
  }

  .page-promotions-new-user-bonus__benefit-icon,
  .page-promotions-new-user-bonus__game-image {
    min-width: 200px;
    min-height: 200px;
    width: 100%;
    height: auto;
  }

  .page-promotions-new-user-bonus__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (min-width: 769px) {
  .page-promotions-new-user-bonus__hero-image-wrapper {
    max-width: 1200px;
  }
  .page-promotions-new-user-bonus__hero-image {
    width: 100%;
    height: auto;
  }
}