/* style/promotions-new-user-bonus.css */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  --card-bg: #17191F;
  --site-bg: #0D0E12;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
}

.page-promotions-new-user-bonus {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Main text color for the page */
  background-color: var(--site-bg); /* Use site-bg as main background */
  line-height: 1.6;
}

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

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

/* Sections */
.page-promotions-new-user-bonus__section {
  padding: 60px 0;
  background-color: var(--site-bg);
}

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

.page-promotions-new-user-bonus__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__text-block {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-main);
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: var(--site-bg);
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-new-user-bonus__hero-image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Enforce min image size */
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(32px, 4vw, 56px); /* Responsive font size for H1 */
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 20px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--text-main);
}

/* Buttons */
.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 15px var(--glow-color);
}

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

.page-promotions-new-user-bonus__btn-secondary {
  background: var(--card-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

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

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

.page-promotions-new-user-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 10px var(--glow-color);
}

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

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

/* Registration Steps */
.page-promotions-new-user-bonus__registration-steps {
  background-color: var(--site-bg);
}

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

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

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

.page-promotions-new-user-bonus__step-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-promotions-new-user-bonus__step-item p {
  font-size: 17px;
  color: var(--text-main);
  margin-bottom: 20px;
}

/* Terms and Conditions */
.page-promotions-new-user-bonus__terms-conditions {
  background-color: var(--site-bg);
}

.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0;
}

.page-promotions-new-user-bonus__terms-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
}

/* Games Showcase */
.page-promotions-new-user-bonus__games-showcase {
  background-color: var(--site-bg);
}

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

.page-promotions-new-user-bonus__game-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-new-user-bonus__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 10px var(--glow-color);
}

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

/* Why Choose Section */
.page-promotions-new-user-bonus__why-choose {
  background-color: var(--site-bg);
}

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

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

.page-promotions-new-user-bonus__feature-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
  min- /* Enforce min image size for icons */
  min- /* Enforce min image size for icons */
}

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

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

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

details.page-promotions-new-user-bonus__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-promotions-new-user-bonus__faq-item summary.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
}
details.page-promotions-new-user-bonus__faq-item summary.page-promotions-new-user-bonus__faq-question::-webkit-details-marker {
  display: none;
}
details.page-promotions-new-user-bonus__faq-item summary.page-promotions-new-user-bonus__faq-question:hover {
  background: rgba(var(--primary-color), 0.1);
}
.page-promotions-new-user-bonus__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}
.page-promotions-new-user-bonus__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-promotions-new-user-bonus__faq-item .page-promotions-new-user-bonus__faq-answer {
  padding: 0 25px 20px;
  background: rgba(var(--card-bg), 0.8);
  border-radius: 0 0 10px 10px;
  color: var(--text-main);
  font-size: 16px;
}

/* Final CTA Section */
.page-promotions-new-user-bonus__final-cta {
  padding-bottom: 80px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__section-title {
    font-size: 32px;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 18px;
  }
  .page-promotions-new-user-bonus__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-promotions-new-user-bonus__card-title {
    font-size: 22px;
  }
  .page-promotions-new-user-bonus__step-title {
    font-size: 24px;
  }
  .page-promotions-new-user-bonus__faq-qtext {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions-new-user-bonus__hero-image-wrapper {
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(28px, 8vw, 40px); /* Adjust clamp for mobile */
    margin-bottom: 15px;
  }

  .page-promotions-new-user-bonus__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-promotions-new-user-bonus__cta-button {
    padding: 14px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .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;
  }

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

  .page-promotions-new-user-bonus__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__text-block {
    font-size: 16px;
    text-align: left;
  }

  .page-promotions-new-user-bonus__feature-cards,
  .page-promotions-new-user-bonus__game-categories,
  .page-promotions-new-user-bonus__grid-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__step-item,
  .page-promotions-new-user-bonus__game-card,
  .page-promotions-new-user-bonus__feature-item {
    padding: 20px;
    border-radius: 8px;
  }

  .page-promotions-new-user-bonus__card img,
  .page-promotions-new-user-bonus__step-item img,
  .page-promotions-new-user-bonus__game-card img,
  .page-promotions-new-user-bonus__feature-item img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-promotions-new-user-bonus__feature-item img {
    
    
    min-
    min-
  }

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

  .page-promotions-new-user-bonus__terms-item {
    font-size: 15px;
    padding: 12px 15px;
  }

  details.page-promotions-new-user-bonus__faq-item summary.page-promotions-new-user-bonus__faq-question {
    padding: 15px;
  }
  .page-promotions-new-user-bonus__faq-qtext {
    font-size: 15px;
  }
  .page-promotions-new-user-bonus__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-promotions-new-user-bonus__faq-item .page-promotions-new-user-bonus__faq-answer {
    padding: 0 15px 15px;
  }

  /* Ensure all containers and elements with images are constrained */
  .page-promotions-new-user-bonus__container,
  .page-promotions-new-user-bonus__feature-cards,
  .page-promotions-new-user-bonus__registration-steps,
  .page-promotions-new-user-bonus__terms-conditions,
  .page-promotions-new-user-bonus__games-showcase,
  .page-promotions-new-user-bonus__why-choose,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__final-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Specific for multiple buttons in a row - if any */
  .page-promotions-new-user-bonus__button-group {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }
}

/* Contrast Fixes - Ensure text is visible on dark backgrounds */
.page-promotions-new-user-bonus__dark-bg {
  background: var(--card-bg);
  color: var(--text-main);
}
.page-promotions-new-user-bonus__dark-section .page-promotions-new-user-bonus__text-block,
.page-promotions-new-user-bonus__dark-section p {
  color: var(--text-main);
}