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

/* Body background is #0a0a0a (dark), so default text should be light */
.page-promotions-new-user-bonus {
  color: #ffffff;
  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;
}

.page-promotions-new-user-bonus__dark-bg {
  background-color: #0a0a0a; /* Body background */
  color: #ffffff;
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-promotions-new-user-bonus__section-intro {
  font-size: clamp(16px, 2vw, 20px);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #cccccc;
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small decorative top padding */
  padding-bottom: 80px;
  overflow: hidden;
  text-align: center;
}

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

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions-new-user-bonus__main-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.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: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-new-user-bonus__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
  box-shadow: 0 4px 15px rgba(38, 169, 224, 0.4);
}

.page-promotions-new-user-bonus__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 169, 224, 0.6);
}

.page-promotions-new-user-bonus__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-new-user-bonus__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(38, 169, 224, 0.2);
}

/* Why PKWIN Section */
.page-promotions-new-user-bonus__why-pkwin {
  padding: 80px 0;
  text-align: center;
}

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

.page-promotions-new-user-bonus__feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

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

.page-promotions-new-user-bonus__feature-title {
  font-size: 24px;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__feature-description {
  font-size: 16px;
  color: #cccccc;
}

/* Bonus Details Section */
.page-promotions-new-user-bonus__bonus-details {
  padding: 80px 0;
  text-align: center;
}

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

.page-promotions-new-user-bonus__bonus-item {
  background: linear-gradient(135deg, rgba(38, 169, 224, 0.15), rgba(38, 169, 224, 0.05));
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(38, 169, 224, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  text-align: left;
}

.page-promotions-new-user-bonus__bonus-title {
  font-size: 22px;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__bonus-description {
  font-size: 16px;
  color: #e0e0e0;
}

.page-promotions-new-user-bonus__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Registration Guide Section */
.page-promotions-new-user-bonus__registration-guide {
  padding: 80px 0;
  text-align: center;
}

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

.page-promotions-new-user-bonus__step-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__step-number {
  width: 50px;
  height: 50px;
  background-color: #26A9E0;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 22px;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__step-description {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Game Highlights Section */
.page-promotions-new-user-bonus__game-highlights {
  padding: 80px 0;
  text-align: center;
}

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

.page-promotions-new-user-bonus__game-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-promotions-new-user-bonus__game-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__game-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

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

.page-promotions-new-user-bonus__game-description {
  font-size: 15px;
  color: #cccccc;
}

/* Payment Methods Section */
.page-promotions-new-user-bonus__payment-methods {
  padding: 80px 0;
  text-align: center;
}

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

.page-promotions-new-user-bonus__payment-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus__payment-icon {
  width: 100%;
  max-width: 100px;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__payment-name {
  font-size: 16px;
  font-weight: 500;
  color: #e0e0e0;
}

.page-promotions-new-user-bonus__payment-note {
  margin-top: 40px;
  font-size: 16px;
  color: #cccccc;
}

/* FAQ Section */
.page-promotions-new-user-bonus__faq-section {
  padding: 80px 0;
}

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

.page-promotions-new-user-bonus__faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: #f0f0f0;
}

.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: #26A9E0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

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

.page-promotions-new-user-bonus__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus__faq-item[open] .page-promotions-new-user-bonus__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-new-user-bonus__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #cccccc;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsible Gaming Section */
.page-promotions-new-user-bonus__responsible-gaming {
  padding: 80px 0;
  text-align: center;
}

.page-promotions-new-user-bonus__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions-new-user-bonus__responsible-list li {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-promotions-new-user-bonus__responsible-list li::before {
  content: '✓';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

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

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

  .page-promotions-new-user-bonus__hero-section {
    padding-top: 10px !important;
    padding-bottom: 50px;
  }

  .page-promotions-new-user-bonus__hero-image {
    margin-bottom: 30px;
  }

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

  .page-promotions-new-user-bonus__hero-description {
    font-size: clamp(16px, 4vw, 18px);
    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;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-promotions-new-user-bonus__section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 20px;
  }

  .page-promotions-new-user-bonus__section-intro {
    font-size: clamp(15px, 3.5vw, 18px);
    margin-bottom: 30px;
  }

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

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

  .page-promotions-new-user-bonus__feature-icon,
  .page-promotions-new-user-bonus__step-image,
  .page-promotions-new-user-bonus__game-image,
  .page-promotions-new-user-bonus__payment-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

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

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

  .page-promotions-new-user-bonus__responsible-list li {
    font-size: 16px;
  }

  /* Ensure all content containers have proper padding and max-width */
  .page-promotions-new-user-bonus__hero-content,
  .page-promotions-new-user-bonus__why-pkwin,
  .page-promotions-new-user-bonus__bonus-details,
  .page-promotions-new-user-bonus__registration-guide,
  .page-promotions-new-user-bonus__game-highlights,
  .page-promotions-new-user-bonus__payment-methods,
  .page-promotions-new-user-bonus__faq-section,
  .page-promotions-new-user-bonus__responsible-gaming,
  .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;
    overflow: hidden !important;
  }
}