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

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

.page-promotions-deposit-bonus__hero {
  background: linear-gradient(135deg, #1A237E 0%, #3949AB 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-promotions-deposit-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-promotions-deposit-bonus__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFD700; /* Gold for highlight */
}

.page-promotions-deposit-bonus__hero-title .highlight {
  color: #FFD700;
}

.page-promotions-deposit-bonus__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-promotions-deposit-bonus__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A237E;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__hero-button:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
}

.page-promotions-deposit-bonus__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promotions-deposit-bonus__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-promotions-deposit-bonus__section:nth-of-type(even) {
  background-color: #f0f2f5;
}

.page-promotions-deposit-bonus__section-title {
  font-size: 2.5em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-deposit-bonus__section-title .highlight {
  color: #FFD700;
}

.page-promotions-deposit-bonus__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions-deposit-bonus__overview p, .page-promotions-deposit-bonus__bonus-types p, .page-promotions-deposit-bonus__details p, .page-promotions-deposit-bonus__terms p, .page-promotions-deposit-bonus__tips p, .page-promotions-deposit-bonus__faq p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

.page-promotions-deposit-bonus__text-link {
  color: #1A237E;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-deposit-bonus__text-link:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-promotions-deposit-bonus__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions-deposit-bonus__feature-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-top: 5px solid #1A237E;
}

.page-promotions-deposit-bonus__feature-item:hover {
  transform: translateY(-5px);
}

.page-promotions-deposit-bonus__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1));
}

.page-promotions-deposit-bonus__feature-item h3 {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__bonus-card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border-left: 8px solid #FFD700;
}

.page-promotions-deposit-bonus__bonus-card:hover {
  transform: translateY(-5px);
}

.page-promotions-deposit-bonus__bonus-card:nth-child(odd) {
  flex-direction: row;
}

.page-promotions-deposit-bonus__bonus-card:nth-child(even) {
  flex-direction: row-reverse;
  border-right: 8px solid #FFD700;
  border-left: none;
}

.page-promotions-deposit-bonus__bonus-card-image {
  width: 40%;
  height: auto;
  object-fit: cover;
}

.page-promotions-deposit-bonus__bonus-card-content {
  padding: 30px;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-promotions-deposit-bonus__bonus-card-content h3 {
  font-size: 2em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-promotions-deposit-bonus__bonus-card-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #666;
}

.page-promotions-deposit-bonus__bonus-card-content ul li {
  margin-bottom: 8px;
}

.page-promotions-deposit-bonus__bonus-button {
  display: inline-block;
  background-color: #1A237E;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1em;
  margin-top: auto; /* Pushes button to bottom */
}

.page-promotions-deposit-bonus__bonus-button:hover {
  background-color: #FFD700;
  color: #1A237E;
}

.page-promotions-deposit-bonus__table-responsive {
  overflow-x: auto;
  margin-top: 30px;
}

.page-promotions-deposit-bonus__bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  min-width: 700px;
}

.page-promotions-deposit-bonus__bonus-table th,
.page-promotions-deposit-bonus__bonus-table td {
  border: 1px solid #eee;
  padding: 15px;
  text-align: left;
  font-size: 0.95em;
}

.page-promotions-deposit-bonus__bonus-table th {
  background-color: #1A237E;
  color: #FFD700;
  font-weight: bold;
  white-space: nowrap;
}

.page-promotions-deposit-bonus__bonus-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-promotions-deposit-bonus__bonus-table td {
  color: #444;
}

.page-promotions-deposit-bonus__table-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A237E;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__table-btn:hover {
  background-color: #e5c100;
}

.page-promotions-deposit-bonus__note {
  text-align: center;
  font-style: italic;
  color: #777;
  margin-top: 30px;
}

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

.page-promotions-deposit-bonus__terms-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-bottom: 5px solid #FFD700;
}

.page-promotions-deposit-bonus__terms-item:hover {
  transform: translateY(-5px);
}

.page-promotions-deposit-bonus__terms-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1));
}

.page-promotions-deposit-bonus__terms-item h3 {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-promotions-deposit-bonus__terms-item p {
  font-size: 1em;
  color: #666;
}

.page-promotions-deposit-bonus__callout {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
  padding: 20px;
  background-color: #e3f2fd; /* Light blue */
  border-left: 5px solid #1A237E;
  border-radius: 5px;
  color: #1A237E;
}

.page-promotions-deposit-bonus__tips-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus__tip-list {
  list-style: none;
  padding: 0;
  counter-reset: tip-counter;
}

.page-promotions-deposit-bonus__tip-list li {
  background-color: #fdfdfd;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 70px;
  border-left: 5px solid #FFD700;
}

.page-promotions-deposit-bonus__tip-list li::before {
  counter-increment: tip-counter;
  content: counter(tip-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #1A237E;
  color: #FFD700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-promotions-deposit-bonus__tip-list li h3 {
  color: #1A237E;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-deposit-bonus__tip-list li p {
  color: #555;
  font-size: 1.05em;
}

.page-promotions-deposit-bonus__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.page-promotions-deposit-bonus__faq-question {
  background-color: #1A237E;
  color: #FFD700;
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonus__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-deposit-bonus__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  color: #555;
  font-size: 1.05em;
}

.page-promotions-deposit-bonus__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 15px 25px 25px;
}

.page-promotions-deposit-bonus__cta-final {
  background: linear-gradient(45deg, #1A237E, #3949AB);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-promotions-deposit-bonus__cta-title .highlight {
  color: #FFD700;
}

.page-promotions-deposit-bonus__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-deposit-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A237E;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__cta-button:hover {
  background-color: #e5c100;
  transform: translateY(-3px);
}

.page-promotions-deposit-bonus__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-promotions-deposit-bonus__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-deposit-bonus__bonus-card-image {
    width: 35%;
  }
  .page-promotions-deposit-bonus__bonus-card-content {
    width: 65%;
  }
  .page-promotions-deposit-bonus__bonus-card-content h3 {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-promotions-deposit-bonus__hero {
    padding: 80px 0 50px;
  }
  .page-promotions-deposit-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-deposit-bonus__section {
    padding: 40px 0;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-deposit-bonus__bonus-card {
    flex-direction: column !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 8px solid #FFD700;
  }
  .page-promotions-deposit-bonus__bonus-card-image {
    width: 100%;
    height: 200px;
  }
  .page-promotions-deposit-bonus__bonus-card-content {
    width: 100%;
    padding: 20px;
  }
  .page-promotions-deposit-bonus__bonus-card-content h3 {
    font-size: 1.6em;
  }
  .page-promotions-deposit-bonus__terms-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-deposit-bonus__tip-list li {
    padding-left: 55px;
  }
  .page-promotions-deposit-bonus__tip-list li::before {
    left: 15px;
    top: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .page-promotions-deposit-bonus__tip-list li h3 {
    font-size: 1.4em;
  }
  .page-promotions-deposit-bonus__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-deposit-bonus__cta-title {
    font-size: 2.2em;
  }
  .page-promotions-deposit-bonus__cta-description {
    font-size: 1.1em;
  }
  .page-promotions-deposit-bonus__cta-button {
    margin: 10px 0;
    width: 90%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-promotions-deposit-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-deposit-bonus__overview p, .page-promotions-deposit-bonus__bonus-types p, .page-promotions-deposit-bonus__details p, .page-promotions-deposit-bonus__terms p, .page-promotions-deposit-bonus__tips p, .page-promotions-deposit-bonus__faq p {
    font-size: 0.95em;
  }
  .page-promotions-deposit-bonus__feature-item {
    padding: 20px;
  }
  .page-promotions-deposit-bonus__feature-icon {
    width: 50px;
    height: 50px;
  }
  .page-promotions-deposit-bonus__feature-item h3 {
    font-size: 1.3em;
  }
  .page-promotions-deposit-bonus__bonus-card-content h3 {
    font-size: 1.4em;
  }
  .page-promotions-deposit-bonus__bonus-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions-deposit-bonus__bonus-table th, .page-promotions-deposit-bonus__bonus-table td {
    padding: 10px;
    font-size: 0.85em;
  }
  .page-promotions-deposit-bonus__table-btn {
    padding: 6px 10px;
    font-size: 0.8em;
  }
  .page-promotions-deposit-bonus__terms-item {
    padding: 20px;
  }
  .page-promotions-deposit-bonus__terms-icon {
    width: 50px;
    height: 50px;
  }
  .page-promotions-deposit-bonus__terms-item h3 {
    font-size: 1.2em;
  }
  .page-promotions-deposit-bonus__tip-list li {
    padding-left: 45px;
  }
  .page-promotions-deposit-bonus__tip-list li::before {
    left: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page-promotions-deposit-bonus__tip-list li h3 {
    font-size: 1.2em;
  }
  .page-promotions-deposit-bonus__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-promotions-deposit-bonus__cta-title {
    font-size: 1.8em;
  }
  .page-promotions-deposit-bonus__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}