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

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

.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;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
  background-color: var(--background);
  color: var(--text-main);
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

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

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

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-promotions-new-user-bonus__cta-buttons--center {
  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: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  border: 2px solid transparent;
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

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

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: rgba(87, 227, 141, 0.1);
  color: var(--text-main);
}

/* General Section Styles */
.page-promotions-new-user-bonus__section {
  padding: 80px 0;
  background-color: var(--background);
  color: var(--text-main);
}

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

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 20px;
}

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

/* Benefits Section Grid */
.page-promotions-new-user-bonus__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus__card {
  background-color: var(--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, box-shadow 0.3s ease;
  color: var(--text-main);
  border: 1px solid var(--border);
}

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

.page-promotions-new-user-bonus__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

.page-promotions-new-user-bonus__card-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-promotions-new-user-bonus__final-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 50px;
}

/* Guide Section */
.page-promotions-new-user-bonus__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.page-promotions-new-user-bonus__step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.page-promotions-new-user-bonus__step-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--divider);
}

/* Bonus Types Section */
.page-promotions-new-user-bonus__bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-promotions-new-user-bonus__bonus-card {
  background-color: var(--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, box-shadow 0.3s ease;
  color: var(--text-main);
  border: 1px solid var(--border);
}

.page-promotions-new-user-bonus__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user-bonus__bonus-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

.page-promotions-new-user-bonus__bonus-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Terms and Conditions Section */
.page-promotions-new-user-bonus__terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promotions-new-user-bonus__terms-item {
  background-color: var(--card-bg);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-main);
}

.page-promotions-new-user-bonus__terms-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--glow);
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__terms-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-main);
  overflow: hidden;
}

.page-promotions-new-user-bonus__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main);
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider);
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

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

.page-promotions-new-user-bonus__faq-qtext {
  flex-grow: 1;
}

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

.page-promotions-new-user-bonus__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus__section-title {
    font-size: 2rem;
  }
  .page-promotions-new-user-bonus__hero-image-wrapper {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding: 40px 0;
  }
  .page-promotions-new-user-bonus__hero-image-wrapper {
    max-height: 300px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .page-promotions-new-user-bonus__subtitle {
    font-size: 1rem;
  }
  .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;
  }
  .page-promotions-new-user-bonus__section {
    padding: 50px 0;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8rem;
  }
  .page-promotions-new-user-bonus__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__grid-container,
  .page-promotions-new-user-bonus__bonus-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__bonus-card,
  .page-promotions-new-user-bonus__step-item,
  .page-promotions-new-user-bonus__terms-item,
  .page-promotions-new-user-bonus__faq-item {
    padding: 20px;
  }
  .page-promotions-new-user-bonus__card-image,
  .page-promotions-new-user-bonus__bonus-image,
  .page-promotions-new-user-bonus__step-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-new-user-bonus__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions-new-user-bonus__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions-new-user-bonus__faq-answer {
    padding: 15px 20px;
  }
  .page-promotions-new-user-bonus__video-section {
    padding-top: 10px !important;
  }
}

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

/* Ensure contrast for main text on dark background */
.page-promotions-new-user-bonus {
  color: var(--text-main); /* Light text on dark background */
  background-color: var(--background);
}

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

.page-promotions-new-user-bonus__btn-primary {
  color: var(--text-main);
}

.page-promotions-new-user-bonus__btn-secondary {
  color: var(--glow);
}

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