/* style/promotions-first-deposit-bonus.css */
:root {
  --lk88-primary-color: #11A84E;
  --lk88-secondary-color: #22C768;
  --lk88-bg-dark: #08160F;
  --lk88-card-bg: #11271B;
  --lk88-text-main: #F2FFF6;
  --lk88-text-secondary: #A7D9B8;
  --lk88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --lk88-border-color: #2E7A4E;
  --lk88-glow-color: #57E38D;
  --lk88-gold-color: #F2C14E;
  --lk88-divider-color: #1E3A2A;
  --lk88-deep-green: #0A4B2C;
}

.page-promotions-first-deposit-bonus {
  background-color: var(--lk88-bg-dark); /* Dark background from custom palette */
  color: var(--lk88-text-main); /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-first-deposit-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: var(--lk88-bg-dark);
  overflow: hidden;
}

.page-promotions-first-deposit-bonus__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-promotions-first-deposit-bonus__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-promotions-first-deposit-bonus__hero-content {
  max-width: 900px;
  margin-top: 20px;
  z-index: 1;
}

.page-promotions-first-deposit-bonus__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--lk88-gold-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-promotions-first-deposit-bonus__hero-description {
  font-size: 1.2rem;
  color: var(--lk88-text-secondary);
  margin-bottom: 30px;
}

/* Buttons */
.page-promotions-first-deposit-bonus__btn-primary {
  display: inline-block;
  background: var(--lk88-button-gradient);
  color: var(--lk88-text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-promotions-first-deposit-bonus__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-promotions-first-deposit-bonus__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.3rem;
}

/* Section Titles */
.page-promotions-first-deposit-bonus__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--lk88-primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(17, 168, 78, 0.4);
}

/* Text Blocks */
.page-promotions-first-deposit-bonus__text-block {
  font-size: 1.1rem;
  color: var(--lk88-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-first-deposit-bonus__text-block a {
  color: var(--lk88-secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus__text-block a:hover {
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__highlight {
  color: var(--lk88-gold-color);
  font-weight: bold;
}

/* Grid Layouts */
.page-promotions-first-deposit-bonus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promotions-first-deposit-bonus__card {
  background-color: var(--lk88-card-bg);
  color: var(--lk88-text-main);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--lk88-border-color);
  transition: transform 0.3s ease;
}

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

.page-promotions-first-deposit-bonus__card-title {
  font-size: 1.5rem;
  color: var(--lk88-primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus__card-text {
  font-size: 1rem;
  color: var(--lk88-text-secondary);
}

/* How-To-Claim Section */
.page-promotions-first-deposit-bonus__steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.page-promotions-first-deposit-bonus__step-card {
  background-color: var(--lk88-card-bg);
  color: var(--lk88-text-main);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--lk88-border-color);
}

.page-promotions-first-deposit-bonus__step-title {
  font-size: 1.4rem;
  color: var(--lk88-gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus__step-description {
  font-size: 1rem;
  color: var(--lk88-text-secondary);
}

.page-promotions-first-deposit-bonus__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-promotions-first-deposit-bonus__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-first-deposit-bonus__image-content--large {
  max-width: 1000px;
}

.page-promotions-first-deposit-bonus__image-content--small {
  max-width: 600px;
}

/* Terms List */
.page-promotions-first-deposit-bonus__terms-list,
.page-promotions-first-deposit-bonus__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions-first-deposit-bonus__terms-list li,
.page-promotions-first-deposit-bonus__feature-list li {
  background-color: var(--lk88-card-bg);
  border: 1px solid var(--lk88-divider-color);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--lk88-text-secondary);
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__terms-list li strong,
.page-promotions-first-deposit-bonus__feature-list li strong {
  color: var(--lk88-primary-color);
}

/* Game Grid */
.page-promotions-first-deposit-bonus__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-promotions-first-deposit-bonus__game-card {
  background-color: var(--lk88-card-bg);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--lk88-border-color);
  transition: transform 0.3s ease;
}

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

.page-promotions-first-deposit-bonus__game-title {
  font-size: 1.3rem;
  color: var(--lk88-gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-first-deposit-bonus__game-title a {
  color: var(--lk88-gold-color);
  text-decoration: none;
}

.page-promotions-first-deposit-bonus__game-title a:hover {
  text-decoration: underline;
}

.page-promotions-first-deposit-bonus__game-description {
  font-size: 0.95rem;
  color: var(--lk88-text-secondary);
}

/* FAQ Section */
.page-promotions-first-deposit-bonus__faq-list {
  margin-top: 30px;
}

.page-promotions-first-deposit-bonus__faq-item {
  background-color: var(--lk88-card-bg);
  border: 1px solid var(--lk88-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit-bonus__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--lk88-primary-color);
  transition: background-color 0.3s ease;
}

.page-promotions-first-deposit-bonus__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions-first-deposit-bonus__faq-item summary:hover {
  background-color: var(--lk88-deep-green);
}

.page-promotions-first-deposit-bonus__faq-qtext {
  flex-grow: 1;
  color: var(--lk88-primary-color);
}

.page-promotions-first-deposit-bonus__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--lk88-gold-color);
}

.page-promotions-first-deposit-bonus__faq-item[open] .page-promotions-first-deposit-bonus__faq-toggle {
  content: '−';
}

.page-promotions-first-deposit-bonus__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1rem;
  color: var(--lk88-text-secondary);
  line-height: 1.6;
  border-top: 1px solid var(--lk88-divider-color);
}

.page-promotions-first-deposit-bonus__faq-answer p {
  margin-bottom: 10px;
}

/* Conclusion Section */
.page-promotions-first-deposit-bonus__conclusion-section {
  text-align: center;
  padding-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-first-deposit-bonus__hero-content {
    padding: 0 15px;
  }
  .page-promotions-first-deposit-bonus__main-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .page-promotions-first-deposit-bonus__hero-description {
    font-size: 1.1rem;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-promotions-first-deposit-bonus__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-promotions-first-deposit-bonus__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-promotions-first-deposit-bonus__hero-description {
    font-size: 1rem;
  }
  .page-promotions-first-deposit-bonus__btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-promotions-first-deposit-bonus__btn-primary--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .page-promotions-first-deposit-bonus__text-block {
    font-size: 1rem;
  }
  .page-promotions-first-deposit-bonus__grid,
  .page-promotions-first-deposit-bonus__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-first-deposit-bonus__card,
  .page-promotions-first-deposit-bonus__game-card,
  .page-promotions-first-deposit-bonus__step-card,
  .page-promotions-first-deposit-bonus__faq-item {
    padding: 20px;
  }
  .page-promotions-first-deposit-bonus__card-title,
  .page-promotions-first-deposit-bonus__game-title {
    font-size: 1.3rem;
  }
  .page-promotions-first-deposit-bonus__step-title {
    font-size: 1.2rem;
  }
  .page-promotions-first-deposit-bonus__faq-item summary {
    font-size: 1.05rem;
    padding: 15px 20px;
  }
  .page-promotions-first-deposit-bonus__faq-answer {
    padding: 10px 20px 20px;
  }
  .page-promotions-first-deposit-bonus__container {
    padding: 0 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile image responsiveness */
  .page-promotions-first-deposit-bonus img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-first-deposit-bonus__hero-image-wrapper,
  .page-promotions-first-deposit-bonus__cta-center,
  .page-promotions-first-deposit-bonus__steps-wrapper,
  .page-promotions-first-deposit-bonus__game-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions-first-deposit-bonus__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-first-deposit-bonus__cta-center .page-promotions-first-deposit-bonus__btn-primary {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions-first-deposit-bonus__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important;
  }
  .page-promotions-first-deposit-bonus__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-promotions-first-deposit-bonus__hero-description {
    font-size: 0.9rem;
  }
  .page-promotions-first-deposit-bonus__btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .page-promotions-first-deposit-bonus__section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .page-promotions-first-deposit-bonus__card,
  .page-promotions-first-deposit-bonus__game-card,
  .page-promotions-first-deposit-bonus__step-card,
  .page-promotions-first-deposit-bonus__faq-item {
    padding: 15px;
  }
  .page-promotions-first-deposit-bonus__card-title,
  .page-promotions-first-deposit-bonus__game-title {
    font-size: 1.2rem;
  }
  .page-promotions-first-deposit-bonus__step-title {
    font-size: 1.1rem;
  }
  .page-promotions-first-deposit-bonus__faq-item summary {
    font-size: 1rem;
    padding: 12px 15px;
  }
  .page-promotions-first-deposit-bonus__faq-answer {
    padding: 8px 15px 15px;
  }
  .page-promotions-first-deposit-bonus__container {
    padding: 0 10px !important;
  }
}