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

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

.page-promotions-new-user-bonus {
  background-color: var(--shbet-background);
  color: var(--shbet-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.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;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: var(--shbet-deep-green);
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 30px;
}

.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 */
}

.page-promotions-new-user-bonus__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions-new-user-bonus__main-title {
  color: var(--shbet-text-main);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
}

.page-promotions-new-user-bonus__hero-description {
  color: var(--shbet-text-secondary);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

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

.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-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions-new-user-bonus__btn-primary {
  background: var(--shbet-button-gradient);
  color: var(--shbet-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-promotions-new-user-bonus__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

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

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: var(--shbet-primary-color);
  color: var(--shbet-text-main);
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.3);
}

/* General Section Styling */
.page-promotions-new-user-bonus__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--shbet-divider);
}

.page-promotions-new-user-bonus__section:last-of-type {
  border-bottom: none;
}

.page-promotions-new-user-bonus__section-title {
  color: var(--shbet-text-main);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

/* Offer Cards Section */
.page-promotions-new-user-bonus__offers-types {
  background-color: var(--shbet-background);
}

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

.page-promotions-new-user-bonus__card {
  background-color: var(--shbet-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--shbet-border);
  color: var(--shbet-text-main);
}

.page-promotions-new-user-bonus__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 150px;
}

.page-promotions-new-user-bonus__card-title {
  color: var(--shbet-primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__card-description {
  color: var(--shbet-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: justify;
}

/* Guide Section */
.page-promotions-new-user-bonus__guide-section {
  background-color: var(--shbet-deep-green);
  color: var(--shbet-text-main);
}

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

.page-promotions-new-user-bonus__step-item {
  background-color: var(--shbet-card-bg);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--shbet-border);
}

.page-promotions-new-user-bonus__step-number {
  width: 50px;
  height: 50px;
  background: var(--shbet-button-gradient);
  color: var(--shbet-text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 2px 8px rgba(34, 199, 104, 0.5);
}

.page-promotions-new-user-bonus__step-title {
  color: var(--shbet-primary-color);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__step-description {
  color: var(--shbet-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-new-user-bonus__btn-link {
  color: var(--shbet-gold);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-new-user-bonus__btn-link:hover {
  color: var(--shbet-glow);
  text-decoration: underline;
}

.page-promotions-new-user-bonus__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 150px;
}

/* Terms Section */
.page-promotions-new-user-bonus__terms-section {
  background-color: var(--shbet-background);
}

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

.page-promotions-new-user-bonus__list li {
  background-color: var(--shbet-card-bg);
  border-left: 5px solid var(--shbet-primary-color);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: var(--shbet-text-main);
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__list li strong {
  color: var(--shbet-gold);
}

/* Why Shbet Section */
.page-promotions-new-user-bonus__why-shbet-section {
  background-color: var(--shbet-deep-green);
}

.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(--shbet-card-bg);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--shbet-border);
}

.page-promotions-new-user-bonus__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 150px;
}

.page-promotions-new-user-bonus__feature-title {
  color: var(--shbet-primary-color);
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-promotions-new-user-bonus__btn-large {
  margin-top: 40px;
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
  background-color: var(--shbet-background);
}

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

.page-promotions-new-user-bonus__faq-item {
  background-color: var(--shbet-card-bg);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--shbet-border);
}

.page-promotions-new-user-bonus__faq-item summary {
  list-style: none;
}

.page-promotions-new-user-bonus__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: var(--shbet-card-bg);
  color: var(--shbet-text-main);
  font-size: 1.15rem;
  font-weight: bold;
  border-bottom: 1px solid var(--shbet-divider);
}

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

.page-promotions-new-user-bonus__faq-qtext {
  flex-grow: 1;
  color: var(--shbet-text-main);
}

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

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-toggle {
  content: '−';
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 15px 25px 20px 25px;
  color: var(--shbet-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
}

/* Dark background sections */
.page-promotions-new-user-bonus__dark-section {
  background-color: var(--shbet-deep-green);
  color: var(--shbet-text-main);
}

.page-promotions-new-user-bonus__dark-section .page-promotions-new-user-bonus__section-title {
  color: var(--shbet-text-main);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__hero-section {
    padding: 40px 0;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-promotions-new-user-bonus__hero-description {
    font-size: 1rem;
  }

  .page-promotions-new-user-bonus__section {
    padding: 40px 0;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }

  .page-promotions-new-user-bonus__offer-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

  .page-promotions-new-user-bonus__feature-icon {
    min-width: 200px;
    min-height: 150px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__container {
    padding: 0 15px !important;
  }

  .page-promotions-new-user-bonus {
    font-size: 16px;
    line-height: 1.6;
  }

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

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

  .page-promotions-new-user-bonus__hero-description {
    font-size: 0.95rem;
  }

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

  .page-promotions-new-user-bonus__btn-primary,
  .page-promotions-new-user-bonus__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
  }

  .page-promotions-new-user-bonus__section {
    padding: 30px 0;
  }

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

  .page-promotions-new-user-bonus__text-block {
    font-size: 0.9rem;
  }

  .page-promotions-new-user-bonus__offer-cards,
  .page-promotions-new-user-bonus__steps-grid,
  .page-promotions-new-user-bonus__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-promotions-new-user-bonus__card-title,
  .page-promotions-new-user-bonus__step-title,
  .page-promotions-new-user-bonus__feature-title {
    font-size: 1.2rem;
  }

  .page-promotions-new-user-bonus__card-description,
  .page-promotions-new-user-bonus__step-description,
  .page-promotions-new-user-bonus__feature-description {
    font-size: 0.85rem;
  }

  .page-promotions-new-user-bonus__list li {
    padding: 15px;
    font-size: 0.9rem;
  }

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

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

  /* Mobile image responsiveness */
  .page-promotions-new-user-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Ensure content images are not too small */
    min-
  }

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

  .page-promotions-new-user-bonus__hero-image {
    min-height: 250px !important;
  }

  .page-promotions-new-user-bonus__image-full-width {
    min-height: 200px !important;
  }

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