/* style/index-register-bonus.css */
.page-index-register-bonus {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-index-register-bonus section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-register-bonus h1,
.page-index-register-bonus h2 {
  color: #8B0000; /* Deep Red for headings */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-register-bonus h1 {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-register-bonus h2 {
  font-size: 2.2em;
  border-bottom: 3px solid #FFD700;
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-register-bonus h3 {
  color: #8B0000;
  font-size: 1.6em;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-index-register-bonus p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-index-register-bonus ul,
.page-index-register-bonus ol {
  margin-left: 25px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-index-register-bonus ul li,
.page-index-register-bonus ol li {
  margin-bottom: 8px;
}

.page-index-register-bonus .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #FFD700, #DAA520);
  color: #8B0000; /* Dark Red text on Gold button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-register-bonus .cta-button:hover {
  background: linear-gradient(135deg, #DAA520, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: #ffffff; /* White text on hover for better contrast */
}

.page-index-register-bonus .primary-button {
  background: linear-gradient(135deg, #8B0000, #B22222);
  color: #FFD700; /* Gold text on Deep Red button */
}

.page-index-register-bonus .primary-button:hover {
  background: linear-gradient(135deg, #B22222, #8B0000);
  color: #ffffff;
}

.page-index-register-bonus .secondary-button {
  background: linear-gradient(135deg, #333333, #555555);
  color: #FFD700;
}

.page-index-register-bonus .secondary-button:hover {
  background: linear-gradient(135deg, #555555, #333333);
  color: #ffffff;
}

.page-index-register-bonus .text-center {
  text-align: center;
}

/* Hero Section */
.page-index-register-bonus .hero-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.page-index-register-bonus .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-index-register-bonus .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-index-register-bonus .hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

.page-index-register-bonus .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.page-index-register-bonus .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Intro Section */
.page-index-register-bonus .section-intro {
  background-color: #fefefe;
}

.page-index-register-bonus .intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-register-bonus .intro-grid .grid-item {
  text-align: center;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index-register-bonus .intro-grid .grid-item:hover {
  transform: translateY(-5px);
}

.page-index-register-bonus .intro-grid .grid-item h3 {
  color: #8B0000;
  font-size: 1.8em;
  margin-top: 15px;
}

.page-index-register-bonus .intro-grid .grid-item .section-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

/* Details Section */
.page-index-register-bonus .section-details {
  background-color: #fefefe;
}

.page-index-register-bonus .details-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-register-bonus .details-card h3 {
  color: #FFD700;
  font-size: 1.8em;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-index-register-bonus .details-card .note {
  font-style: italic;
  color: #666;
  margin-top: 20px;
}

/* Why Choose Section */
.page-index-register-bonus .section-why-choose {
  background-color: #fefefe;
}

.page-index-register-bonus .choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-register-bonus .choose-grid .grid-item {
  text-align: center;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index-register-bonus .choose-grid .grid-item:hover {
  transform: translateY(-5px);
}

.page-index-register-bonus .choose-grid .grid-item h3 {
  color: #8B0000;
  font-size: 1.8em;
  margin-top: 15px;
}

.page-index-register-bonus .choose-grid .grid-item .section-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

/* Promotions Section */
.page-index-register-bonus .section-promotions {
  background-color: #fefefe;
}

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

.page-index-register-bonus .promo-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-index-register-bonus .promo-card:hover {
  transform: translateY(-5px);
}

.page-index-register-bonus .promo-card .promo-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-index-register-bonus .promo-card h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-top: 15px;
  margin-bottom: 10px;
}

/* FAQ Section */
.page-index-register-bonus .section-faq {
  background-color: #fefefe;
}

.page-index-register-bonus .faq-list {
  margin-top: 40px;
}

.page-index-register-bonus .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-register-bonus .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #FFD700; /* Gold background for question */
  color: #8B0000; /* Deep Red text for question */
  border: 1px solid #FFD700;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-register-bonus .faq-question:hover {
  background: #DAA520;
  color: #ffffff;
}

.page-index-register-bonus .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: inherit;
}

.page-index-register-bonus .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-index-register-bonus .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #fff;
  color: #333333;
}

.page-index-register-bonus .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 25px;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

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

/* CTA Bottom Section */
.page-index-register-bonus .section-cta-bottom {
  text-align: center;
  background-color: #8B0000; /* Deep Red background */
  color: #ffffff;
  border-radius: 8px;
  padding: 80px 20px;
}

.page-index-register-bonus .section-cta-bottom h2 {
  color: #FFD700;
  font-size: 2.5em;
  border-bottom: none;
  margin-bottom: 20px;
}

.page-index-register-bonus .section-cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-register-bonus .section-cta-bottom .cta-button {
  background: linear-gradient(135deg, #FFD700, #DAA520);
  color: #8B0000; /* Dark Red text on Gold button */
}

.page-index-register-bonus .section-cta-bottom .cta-button:hover {
  background: linear-gradient(135deg, #DAA520, #FFD700);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-register-bonus h1 {
    font-size: 2.5em;
  }
  .page-index-register-bonus h2 {
    font-size: 1.8em;
  }
  .page-index-register-bonus h3 {
    font-size: 1.4em;
  }
  .page-index-register-bonus .hero-banner {
    height: 400px;
  }
  .page-index-register-bonus .hero-content h1 {
    font-size: 2.8em;
  }
  .page-index-register-bonus .hero-content p {
    font-size: 1.1em;
  }
  .page-index-register-bonus .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-index-register-bonus section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-index-register-bonus h1 {
    font-size: 2em;
  }
  .page-index-register-bonus h2 {
    font-size: 1.6em;
  }
  .page-index-register-bonus h3 {
    font-size: 1.2em;
  }
  .page-index-register-bonus p,
  .page-index-register-bonus ul li,
  .page-index-register-bonus ol li {
    font-size: 1em;
  }
  .page-index-register-bonus .hero-banner {
    height: 350px;
  }
  .page-index-register-bonus .hero-content h1 {
    font-size: 2.2em;
  }
  .page-index-register-bonus .hero-content p {
    font-size: 1em;
  }
  .page-index-register-bonus .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-index-register-bonus .intro-grid,
  .page-index-register-bonus .choose-grid,
  .page-index-register-bonus .promotions-grid {
    grid-template-columns: 1fr;
  }
  .page-index-register-bonus .intro-grid .grid-item,
  .page-index-register-bonus .choose-grid .grid-item,
  .page-index-register-bonus .promo-card,
  .page-index-register-bonus .details-card {
    padding: 20px;
  }
  .page-index-register-bonus .faq-question {
    padding: 15px 20px;
  }
  .page-index-register-bonus .faq-question h3 {
    font-size: 1.1em;
  }
  .page-index-register-bonus .faq-answer {
    padding: 0 20px;
  }
  .page-index-register-bonus .faq-item.active .faq-answer {
    padding: 20px;
  }
  .page-index-register-bonus .section-cta-bottom h2 {
    font-size: 2em;
  }
}