/* style/promotions-registration-bonus.css */
.page-promotions-registration-bonus {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-promotions-registration-bonus-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-registration-bonus-section-title {
  font-size: 2.5em;
  color: #0056b3; /* Darker shade of primary for contrast */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-registration-bonus-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Auxiliary color for emphasis */
  border-radius: 2px;
}

.page-promotions-registration-bonus-intro-text {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #555;
}

.page-promotions-registration-bonus-hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Primary color gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-registration-bonus-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.page-promotions-registration-bonus-hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-promotions-registration-bonus-hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-promotions-registration-bonus-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promotions-registration-bonus-btn-primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #333; /* Dark text for contrast on light background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-registration-bonus-btn-primary:hover {
  background-color: #e0a800; /* Darker auxiliary on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-registration-bonus-btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-registration-bonus-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-registration-bonus-hero-image-wrapper {
  margin-top: 50px;
}

.page-promotions-registration-bonus-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-registration-bonus-benefits-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-promotions-registration-bonus-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions-registration-bonus-benefit-item {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-promotions-registration-bonus-benefit-item:hover {
  transform: translateY(-5px);
}

.page-promotions-registration-bonus-benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-promotions-registration-bonus-benefit-item h3 {
  font-size: 1.5em;
  color: #007bff; /* Primary color */
  margin-bottom: 15px;
}

.page-promotions-registration-bonus-benefit-item p {
  color: #666;
}

.page-promotions-registration-bonus-details-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-promotions-registration-bonus-promo-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 60px;
}

.page-promotions-registration-bonus-promo-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-registration-bonus-promo-content {
  flex: 2;
  min-width: 300px;
}

.page-promotions-registration-bonus-promo-content h3 {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 25px;
}

.page-promotions-registration-bonus-promo-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions-registration-bonus-promo-content ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23ffc107"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-promotions-registration-bonus-promo-content strong {
  color: #0056b3;
}

.page-promotions-registration-bonus-note {
  font-style: italic;
  color: #888;
  margin-top: 20px;
  font-size: 0.95em;
}

.page-promotions-registration-bonus-sub-section-title {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

.page-promotions-registration-bonus-terms-list {
  list-style: decimal;
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding-left: 25px;
  color: #555;
  font-size: 1.05em;
}

.page-promotions-registration-bonus-terms-list li {
  margin-bottom: 15px;
}

.page-promotions-registration-bonus-guide-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-promotions-registration-bonus-guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-promotions-registration-bonus-step-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions-registration-bonus-step-number {
  width: 60px;
  height: 60px;
  background-color: #007bff; /* Primary color */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-registration-bonus-step-content h3 {
  font-size: 1.6em;
  color: #0056b3;
  margin-bottom: 15px;
}

.page-promotions-registration-bonus-step-content p {
  color: #666;
  margin-bottom: 20px;
}

.page-promotions-registration-bonus-step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-registration-bonus-btn-link {
  background-color: #ffc107;
  color: #333;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1em;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-promotions-registration-bonus-btn-link:hover {
  background-color: #e0a800;
}

.page-promotions-registration-bonus-game-overview-section {
  padding: 80px 0;
  background-color: #f0f8ff;
}

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

.page-promotions-registration-bonus-feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-promotions-registration-bonus-feature-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: contain; /* Ensure image fits without cropping */
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promotions-registration-bonus-feature-item h4 {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-promotions-registration-bonus-feature-item p {
  color: #666;
}

.page-promotions-registration-bonus-center-cta {
  text-align: center;
  margin-top: 60px;
}

.page-promotions-registration-bonus-faq-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-promotions-registration-bonus-faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-registration-bonus-accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-registration-bonus-accordion-header {
  background-color: #007bff; /* Primary color */
  color: #fff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-registration-bonus-accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-registration-bonus-accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-registration-bonus-accordion-header:hover {
  background-color: #0056b3;
}

.page-promotions-registration-bonus-accordion-content {
  padding: 0 25px;
  background-color: #f0f8ff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-registration-bonus-accordion-content p {
  padding: 20px 0;
  color: #555;
}

.page-promotions-registration-bonus-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #007bff 0%, #ffc107 100%); /* Gradient with both colors */
  text-align: center;
  color: #fff;
}

.page-promotions-registration-bonus-cta-section .page-promotions-registration-bonus-section-title {
  color: #fff;
}

.page-promotions-registration-bonus-cta-section .page-promotions-registration-bonus-intro-text {
  color: #eee;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-promotions-registration-bonus-btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 50px;
  background-color: #ffc107;
  color: #333;
}

.page-promotions-registration-bonus-btn-large:hover {
  background-color: #e0a800;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-registration-bonus-hero-title {
    font-size: 2.8em;
  }
  .page-promotions-registration-bonus-hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions-registration-bonus-section-title {
    font-size: 2em;
  }
  .page-promotions-registration-bonus-promo-item {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-registration-bonus-promo-image {
    max-width: 100%;
  }
  .page-promotions-registration-bonus-step-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions-registration-bonus-hero-title {
    font-size: 2.2em;
  }
  .page-promotions-registration-bonus-hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-registration-bonus-hero-cta-group {
    flex-direction: column;
  }
  .page-promotions-registration-bonus-btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions-registration-bonus-section-title {
    font-size: 1.8em;
  }
  .page-promotions-registration-bonus-promo-item {
    padding: 30px;
  }
  .page-promotions-registration-bonus-game-features {
    grid-template-columns: 1fr;
  }
  .page-promotions-registration-bonus-guide-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-promotions-registration-bonus-hero-title {
    font-size: 1.8em;
  }
  .page-promotions-registration-bonus-hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-registration-bonus-btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions-registration-bonus-section-title {
    font-size: 1.5em;
  }
  .page-promotions-registration-bonus-promo-content h3 {
    font-size: 1.6em;
  }
  .page-promotions-registration-bonus-accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
}