/* style/index-registration-bonus-details.css */
.page-index-registration-bonus-details {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0A192F; /* Main dark background */
  line-height: 1.6;
}

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

.page-index-registration-bonus-details-hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #1A2A47 100%); /* Gradient for depth */
  overflow: hidden;
}

.page-index-registration-bonus-details-hero .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-index-registration-bonus-details-hero .hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 900px; /* Limit image width */
}

.page-index-registration-bonus-details-hero .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-registration-bonus-details-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #FFFFFF;
}

.page-index-registration-bonus-details-hero h1 {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.page-index-registration-bonus-details-hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-registration-bonus-details .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text for gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.page-index-registration-bonus-details .cta-button:hover {
  background: #DC143C; /* Red on hover */
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
}

.page-index-registration-bonus-details .secondary-cta {
  background: #1A2A47;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: none;
}

.page-index-registration-bonus-details .secondary-cta:hover {
  background: #FFD700;
  color: #0A192F;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-index-registration-bonus-details .primary-cta {
  background: #DC143C;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.page-index-registration-bonus-details .primary-cta:hover {
  background: #FFD700;
  color: #0A192F;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.page-index-registration-bonus-details-section {
  padding: 80px 0;
  text-align: center;
}

.page-index-registration-bonus-details-section:nth-of-type(odd) {
  background-color: #1A2A47; /* Slightly lighter dark background */
}

.page-index-registration-bonus-details-section:nth-of-type(even) {
  background-color: #0A192F;
}

.page-index-registration-bonus-details-section h2 {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-registration-bonus-details-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C;
  border-radius: 2px;
}

.page-index-registration-bonus-details-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-index-registration-bonus-details .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 50px;
}

.page-index-registration-bonus-details .content-wrapper .text-content {
  flex: 1;
}

.page-index-registration-bonus-details .content-wrapper .image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-registration-bonus-details .content-wrapper .image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-registration-bonus-details .content-wrapper.reverse {
  flex-direction: row-reverse;
}

.page-index-registration-bonus-details ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-index-registration-bonus-details ul li {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: #E0E0E0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-registration-bonus-details ul li strong {
  color: #FFD700;
}

.page-index-registration-bonus-details ul li::before {
  content: '✔️';
  margin-right: 15px;
  color: #DC143C;
  font-size: 1.2em;
  line-height: 1;
}

.page-index-registration-bonus-details .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-index-registration-bonus-details .step-item {
  background-color: #1A2A47;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-registration-bonus-details .step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-index-registration-bonus-details .step-item .step-icon {
  width: 150px; /* Enforce min size */
  height: 150px; /* Enforce min size */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid #FFD700;
  padding: 10px;
  background-color: #0A192F;
}

.page-index-registration-bonus-details .step-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-registration-bonus-details .step-item p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-index-registration-bonus-details .text-center {
  text-align: center;
  margin-top: 50px;
}

.page-index-registration-bonus-details .promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-registration-bonus-details .promo-card {
  background-color: #1A2A47;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(220, 20, 60, 0.2);
}

.page-index-registration-bonus-details .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-registration-bonus-details .promo-card img {
  width: 100%;
  height: 200px; /* Ensure minimum size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-index-registration-bonus-details .promo-card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-index-registration-bonus-details .promo-card h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-registration-bonus-details .promo-card h3 a:hover {
  color: #DC143C;
}

.page-index-registration-bonus-details .promo-card p {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-registration-bonus-details .promo-card .promo-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #DC143C;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-registration-bonus-details .promo-card .promo-link:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* FAQ Styles */
.page-index-registration-bonus-details .faq-list {
  margin-top: 50px;
  text-align: left;
}

.page-index-registration-bonus-details .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1A2A47;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-registration-bonus-details .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #0A192F;
  border: 1px solid #1A2A47;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-index-registration-bonus-details .faq-question:hover {
  background: #1A2A47;
}

.page-index-registration-bonus-details .faq-question h3 {
  font-size: 1.2em;
  color: #FFD700;
  margin: 0;
}

.page-index-registration-bonus-details .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #DC143C;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-index-registration-bonus-details .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.page-index-registration-bonus-details .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #1A2A47;
  border-radius: 0 0 8px 8px;
}

.page-index-registration-bonus-details .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
}

.page-index-registration-bonus-details .faq-answer p {
  color: #C0C0C0;
  margin: 0;
  font-size: 1em;
}

.page-index-registration-bonus-details .conclusion-cta {
  background: linear-gradient(135deg, #DC143C 0%, #FFD700 100%);
  padding: 80px 20px;
  color: #FFFFFF;
  border-radius: 15px;
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-registration-bonus-details .conclusion-cta h2 {
  color: #FFFFFF;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-index-registration-bonus-details .conclusion-cta h2::after {
  background-color: #0A192F;
}

.page-index-registration-bonus-details .conclusion-cta p {
  color: #F0F0F0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-registration-bonus-details-hero h1 {
    font-size: 2.8em;
  }
  .page-index-registration-bonus-details-hero p {
    font-size: 1.1em;
  }
  .page-index-registration-bonus-details .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-index-registration-bonus-details-section h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-registration-bonus-details-hero {
    padding: 40px 15px;
  }
  .page-index-registration-bonus-details-hero h1 {
    font-size: 2.2em;
  }
  .page-index-registration-bonus-details-hero p {
    font-size: 1em;
  }
  .page-index-registration-bonus-details .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-registration-bonus-details-section {
    padding: 50px 0;
  }
  .page-index-registration-bonus-details-section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-registration-bonus-details .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-index-registration-bonus-details .content-wrapper.reverse {
    flex-direction: column;
  }
  .page-index-registration-bonus-details ul li {
    padding: 12px 15px;
    font-size: 0.95em;
  }
  .page-index-registration-bonus-details .steps-grid, .page-index-registration-bonus-details .promo-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-index-registration-bonus-details .step-item .step-icon {
    width: 100px;
    height: 100px;
  }
  .page-index-registration-bonus-details .promo-card img {
    height: 180px;
  }
  .page-index-registration-bonus-details .faq-question {
    padding: 15px 20px;
  }
  .page-index-registration-bonus-details .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-registration-bonus-details .faq-toggle {
    font-size: 1.5em;
  }
  .page-index-registration-bonus-details .faq-answer {
    padding: 15px 20px;
  }
  .page-index-registration-bonus-details .conclusion-cta {
    padding: 50px 15px;
    margin: 40px auto;
  }
}

@media (max-width: 480px) {
  .page-index-registration-bonus-details-hero h1 {
    font-size: 1.8em;
  }
  .page-index-registration-bonus-details-hero p {
    font-size: 0.9em;
  }
  .page-index-registration-bonus-details .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-index-registration-bonus-details-section h2 {
    font-size: 1.5em;
  }
  .page-index-registration-bonus-details ul li {
    font-size: 0.9em;
  }
  .page-index-registration-bonus-details .promo-card h3 {
    font-size: 1.2em;
  }
  .page-index-registration-bonus-details .promo-card p {
    font-size: 0.85em;
  }
  .page-index-registration-bonus-details .promo-card .promo-link {
    padding: 8px 15px;
    font-size: 0.8em;
  }
}