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

.page-promotions-new-user-bonus-details {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-promotions-new-user-bonus-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-new-user-bonus-details__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-promotions-new-user-bonus-details__section:nth-of-type(odd) {
  background-color: #fdfdfd;
}

.page-promotions-new-user-bonus-details__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep Red */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-new-user-bonus-details__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold */
  border-radius: 2px;
}

/* Hero Section */
.page-promotions-new-user-bonus-details__hero {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-new-user-bonus-details__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-promotions-new-user-bonus-details__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-promotions-new-user-bonus-details__hero-btn {
  display: inline-block;
  background-color: #fff;
  color: #8B0000; /* Deep Red */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.page-promotions-new-user-bonus-details__hero-btn:hover {
  background-color: #eee;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* General Text Styles */
.page-promotions-new-user-bonus-details p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-promotions-new-user-bonus-details h3 {
  font-size: 1.8em;
  color: #8B0000; /* Deep Red */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus-details ul,
.page-promotions-new-user-bonus-details ol {
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus-details ul li,
.page-promotions-new-user-bonus-details ol li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #555;
}

.page-promotions-new-user-bonus-details__text-link {
  color: #8B0000; /* Deep Red */
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-new-user-bonus-details__text-link:hover {
  text-decoration: underline;
  color: #b30000;
}

/* Why FIVE88 Section */
.page-promotions-new-user-bonus-details__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus-details__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: #fefefe;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus-details__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.page-promotions-new-user-bonus-details__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}

.page-promotions-new-user-bonus-details__feature-item h3 {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-top: 0;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-promotions-new-user-bonus-details__feature-item p {
  font-size: 1em;
  color: #666;
}

/* Bonuses Section */
.page-promotions-new-user-bonus-details__bonus-card {
  display: flex;
  align-items: center;
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  overflow: hidden;
}

.page-promotions-new-user-bonus-details__bonus-card:nth-child(even) {
  flex-direction: row-reverse;
}

.page-promotions-new-user-bonus-details__bonus-img {
  width: 40%;
  height: 300px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-promotions-new-user-bonus-details__bonus-content {
  padding: 30px;
  flex-grow: 1;
}

.page-promotions-new-user-bonus-details__bonus-content h3 {
  font-size: 2em;
  color: #8B0000; /* Deep Red */
  margin-top: 0;
}

.page-promotions-new-user-bonus-details__bonus-content ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-promotions-new-user-bonus-details__bonus-content ul li {
  font-size: 1em;
  color: #555;
  margin-bottom: 5px;
}

.page-promotions-new-user-bonus-details__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.page-promotions-new-user-bonus-details__btn:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-promotions-new-user-bonus-details__note {
  font-style: italic;
  text-align: center;
  margin-top: 40px;
  color: #777;
}

/* Guide Section */
.page-promotions-new-user-bonus-details__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus-details__step-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: #fefefe;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus-details__step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.page-promotions-new-user-bonus-details__step-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}

.page-promotions-new-user-bonus-details__step-item h3 {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-top: 0;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-promotions-new-user-bonus-details__step-item p {
  font-size: 1em;
  color: #666;
}

.page-promotions-new-user-bonus-details__btn--cta {
  margin-top: 50px;
  font-size: 1.3em;
  padding: 15px 40px;
  background-color: #8B0000; /* Deep Red */
  color: #FFD700; /* Gold */
}

.page-promotions-new-user-bonus-details__btn--cta:hover {
  background-color: #b30000;
  color: #fff;
}

/* FAQ Section */
.page-promotions-new-user-bonus-details__accordion {
  margin-top: 40px;
}

.page-promotions-new-user-bonus-details__accordion-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-new-user-bonus-details__accordion-header {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-new-user-bonus-details__accordion-header:hover {
  background-color: #e6c200;
}

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

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

.page-promotions-new-user-bonus-details__accordion-content {
  padding: 0 25px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promotions-new-user-bonus-details__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #555;
}

/* Responsible Gambling Section */
.page-promotions-new-user-bonus-details__responsible-gambling {
  text-align: center;
  background-color: #f0f0f0;
}

.page-promotions-new-user-bonus-details__responsible-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Bottom CTA */
.page-promotions-new-user-bonus-details__cta-bottom {
  background: #8B0000; /* Deep Red */
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-promotions-new-user-bonus-details__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-promotions-new-user-bonus-details__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-promotions-new-user-bonus-details__btn--large {
  padding: 18px 50px;
  font-size: 1.5em;
  border-radius: 50px;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
}

.page-promotions-new-user-bonus-details__btn--large:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Floating Promo */
.page-promotions-new-user-bonus-details__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFD700; /* Gold */
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  animation: pulse 2s infinite;
}

.page-promotions-new-user-bonus-details__floating-promo a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  color: #8B0000; /* Deep Red */
  font-weight: bold;
  font-size: 1.1em;
}

.page-promotions-new-user-bonus-details__floating-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-new-user-bonus-details__hero-title {
    font-size: 3em;
  }
  .page-promotions-new-user-bonus-details__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions-new-user-bonus-details__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus-details__bonus-card {
    flex-direction: column;
  }
  .page-promotions-new-user-bonus-details__bonus-card:nth-child(even) {
    flex-direction: column;
  }
  .page-promotions-new-user-bonus-details__bonus-img {
    width: 100%;
    height: 250px;
  }
  .page-promotions-new-user-bonus-details__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus-details__hero {
    padding: 80px 0;
  }
  .page-promotions-new-user-bonus-details__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-new-user-bonus-details__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus-details__section {
    padding: 40px 0;
  }
  .page-promotions-new-user-bonus-details__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus-details__feature-item,
  .page-promotions-new-user-bonus-details__step-item {
    padding: 20px;
  }
  .page-promotions-new-user-bonus-details__bonus-content {
    padding: 20px;
  }
  .page-promotions-new-user-bonus-details__bonus-content h3 {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus-details__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promotions-new-user-bonus-details__btn--cta {
    font-size: 1.1em;
    padding: 12px 30px;
  }
  .page-promotions-new-user-bonus-details__cta-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus-details__cta-text {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus-details__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-promotions-new-user-bonus-details__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-new-user-bonus-details__floating-promo {
    bottom: 15px;
    right: 15px;
  }
  .page-promotions-new-user-bonus-details__floating-promo a {
    padding: 8px 15px;
    font-size: 1em;
  }
  .page-promotions-new-user-bonus-details__floating-icon {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus-details__hero-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus-details__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus-details__hero-btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promotions-new-user-bonus-details__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus-details p,
  .page-promotions-new-user-bonus-details ul li,
  .page-promotions-new-user-bonus-details ol li {
    font-size: 0.95em;
  }
  .page-promotions-new-user-bonus-details__feature-item h3,
  .page-promotions-new-user-bonus-details__step-item h3 {
    font-size: 1.4em;
  }
  .page-promotions-new-user-bonus-details__bonus-content h3 {
    font-size: 1.3em;
  }
  .page-promotions-new-user-bonus-details__cta-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus-details__cta-text {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus-details__btn--large {
    font-size: 1.1em;
    padding: 12px 30px;
  }
}