/* style/promotions-first-deposit-bonus.css */
.page-promotions-first-deposit-bonus {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A1931; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-promotions-first-deposit-bonus section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-first-deposit-bonus h1,
.page-promotions-first-deposit-bonus h2,
.page-promotions-first-deposit-bonus h3 {
  color: #FFC107; /* Accent gold for headings */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus h1 {
  font-size: 3.2em;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-first-deposit-bonus h2 {
  font-size: 2.5em;
  margin-top: 40px;
}

.page-promotions-first-deposit-bonus h3 {
  font-size: 1.8em;
  color: #f5e6ce; /* Lighter gold for subheadings */
}

.page-promotions-first-deposit-bonus p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-promotions-first-deposit-bonus .subtitle {
  font-size: 1.3em;
  color: #FFC107;
  margin-bottom: 40px;
  font-weight: 500;
}

/* Buttons */
.page-promotions-first-deposit-bonus .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  margin: 10px;
}

.page-promotions-first-deposit-bonus .btn-primary {
  background-color: #FFC107; /* Accent gold */
  color: #0A1931; /* Dark blue text */
}

.page-promotions-first-deposit-bonus .btn-primary:hover {
  background-color: #e6b000; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-promotions-first-deposit-bonus .btn-secondary {
  background-color: #0A1931; /* Dark blue background */
  color: #FFC107; /* Accent gold text */
  border: 2px solid #FFC107;
}

.page-promotions-first-deposit-bonus .btn-secondary:hover {
  background-color: #1a325a; /* Slightly lighter dark blue on hover */
  transform: translateY(-2px);
}

.page-promotions-first-deposit-bonus .btn-lg {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-promotions-first-deposit-bonus .hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a325a 100%);
  padding: 100px 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-promotions-first-deposit-bonus .hero-section::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 200px; height: 200px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    animation: float1 10s infinite ease-in-out;
}

.page-promotions-first-deposit-bonus .hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 150px; height: 150px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 50%;
    animation: float2 12s infinite ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0); opacity: 0.8; }
    50% { transform: translate(20px, 30px); opacity: 1; }
    100% { transform: translate(0, 0); opacity: 0.8; }
}

@keyframes float2 {
    0% { transform: translate(0, 0); opacity: 0.7; }
    50% { transform: translate(-25px, -35px); opacity: 1; }
    100% { transform: translate(0, 0); opacity: 0.7; }
}

.page-promotions-first-deposit-bonus .hero-actions {
  margin-top: 40px;
}

/* Promo Overview */
.page-promotions-first-deposit-bonus .promo-overview {
  background-color: #0A1931;
  padding: 80px 0;
}

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

.page-promotions-first-deposit-bonus .overview-item {
  background-color: #1a325a; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus .overview-item:hover {
  transform: translateY(-10px);
}

.page-promotions-first-deposit-bonus .overview-item .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFC107);
}

.page-promotions-first-deposit-bonus .overview-item h3 {
  color: #FFC107;
  margin-top: 0;
  font-size: 1.5em;
}

.page-promotions-first-deposit-bonus .overview-item p {
  color: #D0D0D0;
}

/* Bonus Details */
.page-promotions-first-deposit-bonus .bonus-details {
  background-color: #0A1931;
  padding: 80px 0;
  text-align: left;
}

.page-promotions-first-deposit-bonus .bonus-details .container > h2 {
    text-align: center;
}

.page-promotions-first-deposit-bonus .bonus-details .container > p {
    text-align: center;
    margin-bottom: 50px;
}

.page-promotions-first-deposit-bonus .detail-item {
  background-color: #1a325a;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit-bonus .detail-item h3 {
  color: #FFC107;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus .detail-item p {
  color: #D0D0D0;
  margin-bottom: 10px;
}

.page-promotions-first-deposit-bonus .detail-item strong {
  color: #FFC107;
}

.page-promotions-first-deposit-bonus .detail-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* How to Claim */
.page-promotions-first-deposit-bonus .how-to-claim {
  background-color: #0A1931;
  padding: 80px 0;
}

.page-promotions-first-deposit-bonus .how-to-claim ol {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-first-deposit-bonus .how-to-claim ol li {
  background-color: #1a325a;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 80px;
}

.page-promotions-first-deposit-bonus .how-to-claim ol li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: #FFC107;
  color: #0A1931;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus .how-to-claim ol li h3 {
  color: #FFC107;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.6em;
}

.page-promotions-first-deposit-bonus .how-to-claim ol li p {
  color: #D0D0D0;
  margin-bottom: 15px;
}

.page-promotions-first-deposit-bonus .how-to-claim .process-image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Terms & Conditions */
.page-promotions-first-deposit-bonus .terms-conditions {
  background-color: #0A1931;
  padding: 80px 0;
  text-align: left;
}

.page-promotions-first-deposit-bonus .terms-conditions .container > h2 {
    text-align: center;
}

.page-promotions-first-deposit-bonus .terms-conditions .container > p {
    text-align: center;
    margin-bottom: 50px;
}

.page-promotions-first-deposit-bonus .terms-conditions ul {
  list-style: none;
  padding: 0;
  counter-reset: term-counter;
}

.page-promotions-first-deposit-bonus .terms-conditions ul li {
  background-color: #1a325a;
  padding: 20px 30px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 40px;
  color: #D0D0D0;
}

.page-promotions-first-deposit-bonus .terms-conditions ul li::before {
  content: counter(term-counter) ". ";
  counter-increment: term-counter;
  position: absolute;
  left: 15px;
  top: 20px;
  color: #FFC107;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus .terms-conditions ul li strong {
  color: #FFC107;
}

/* Why SUNWIN */
.page-promotions-first-deposit-bonus .why-sunwin {
  background-color: #0A1931;
  padding: 80px 0;
}

.page-promotions-first-deposit-bonus .why-sunwin ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-first-deposit-bonus .why-sunwin ul li {
  background-color: #1a325a;
  padding: 20px 30px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #D0D0D0;
  font-size: 1.1em;
  position: relative;
  padding-left: 50px;
}

.page-promotions-first-deposit-bonus .why-sunwin ul li::before {
  content: '✔';
  color: #FFC107;
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 1.2em;
}

.page-promotions-first-deposit-bonus .why-sunwin ul li strong {
  color: #FFC107;
}

.page-promotions-first-deposit-bonus .platform-image {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-promotions-first-deposit-bonus .faq-section {
  background-color: #0A1931;
  padding: 80px 0;
  text-align: left;
}

.page-promotions-first-deposit-bonus .faq-item {
  background-color: #1a325a;
  padding: 25px 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus .faq-item h3 {
  color: #FFC107;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  font-size: 1.4em;
}

.page-promotions-first-deposit-bonus .faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promotions-first-deposit-bonus .faq-item h3.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-first-deposit-bonus .faq-item p {
  color: #D0D0D0;
  margin-top: 0;
  display: none; /* Hidden by default */
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}

.page-promotions-first-deposit-bonus .faq-item p.active {
  display: block;
  max-height: 500px; /* Arbitrary large value */
  opacity: 1;
}

/* Call to Action */
.page-promotions-first-deposit-bonus .call-to-action {
  background-color: #0A1931;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.page-promotions-first-deposit-bonus .call-to-action h2 {
  font-size: 2.8em;
  margin-bottom: 30px;
}

.page-promotions-first-deposit-bonus .call-to-action p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus h1 {
    font-size: 2.5em;
  }
  .page-promotions-first-deposit-bonus h2 {
    font-size: 2em;
  }
  .page-promotions-first-deposit-bonus h3 {
    font-size: 1.5em;
  }
  .page-promotions-first-deposit-bonus .subtitle {
    font-size: 1.1em;
  }
  .page-promotions-first-deposit-bonus .hero-actions {
    flex-direction: column;
  }
  .page-promotions-first-deposit-bonus .btn {
    width: 80%;
    margin: 10px auto;
  }
  .page-promotions-first-deposit-bonus .overview-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-first-deposit-bonus .how-to-claim ol li {
    padding-left: 60px;
  }
  .page-promotions-first-deposit-bonus .how-to-claim ol li::before {
    left: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-promotions-first-deposit-bonus .why-sunwin ul li {
    padding-left: 40px;
  }
  .page-promotions-first-deposit-bonus .why-sunwin ul li::before {
    left: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-bonus h1 {
    font-size: 2em;
  }
  .page-promotions-first-deposit-bonus h2 {
    font-size: 1.8em;
  }
  .page-promotions-first-deposit-bonus h3 {
    font-size: 1.3em;
  }
  .page-promotions-first-deposit-bonus .btn {
    width: 95%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions-first-deposit-bonus .hero-section,
  .page-promotions-first-deposit-bonus section {
    padding: 40px 0;
  }
  .page-promotions-first-deposit-bonus .container {
    padding: 0 15px;
  }
  .page-promotions-first-deposit-bonus .faq-item h3::after {
    font-size: 1em;
  }
}