/* style/promotions-deposit-bonuses.css */
/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần lặp lại */

:root {
  --ok9-primary-color: #26A9E0;
  --ok9-secondary-color: #FFFFFF;
  --ok9-login-color: #EA7C07;
  --ok9-dark-text: #333333;
  --ok9-light-text: #ffffff;
  --ok9-background-light: #f8f9fa;
}

.page-promotions-deposit-bonuses {
  font-family: 'Arial', sans-serif;
  color: var(--ok9-dark-text); /* Mặc định cho nền sáng */
  background-color: var(--ok9-background-light);
}

.page-promotions-deposit-bonuses__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Chỉ một khoảng đệm nhỏ, không phải var(--header-offset) */
  background-color: #000000; /* Nền tối để hình ảnh nổi bật */
}

.page-promotions-deposit-bonuses__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  max-width: 1200px;
}

.page-promotions-deposit-bonuses__hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 30px 0;
  color: var(--ok9-light-text);
}

.page-promotions-deposit-bonuses__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ok9-light-text);
}

.page-promotions-deposit-bonuses__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-promotions-deposit-bonuses__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-deposit-bonuses__btn-primary,
.page-promotions-deposit-bonuses__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions-deposit-bonuses__btn-primary {
  background-color: var(--ok9-primary-color);
  color: var(--ok9-light-text);
  border: 2px solid var(--ok9-primary-color);
}

.page-promotions-deposit-bonuses__btn-primary:hover {
  background-color: darken(var(--ok9-primary-color), 10%);
  border-color: darken(var(--ok9-primary-color), 10%);
}

.page-promotions-deposit-bonuses__btn-secondary {
  background-color: transparent;
  color: var(--ok9-primary-color);
  border: 2px solid var(--ok9-primary-color);
}

.page-promotions-deposit-bonuses__btn-secondary:hover {
  background-color: var(--ok9-primary-color);
  color: var(--ok9-light-text);
}

.page-promotions-deposit-bonuses__content-area,
.page-promotions-deposit-bonuses__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-promotions-deposit-bonuses__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ok9-primary-color);
  margin-bottom: 30px;
  text-align: center;
  padding-top: 20px;
}

.page-promotions-deposit-bonuses__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--ok9-dark-text);
}

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

.page-promotions-deposit-bonuses__card {
  background-color: var(--ok9-secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--ok9-dark-text);
  transition: transform 0.3s ease;
}

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

.page-promotions-deposit-bonuses__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-promotions-deposit-bonuses__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ok9-primary-color);
  margin-bottom: 15px;
}

.page-promotions-deposit-bonuses__card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.page-promotions-deposit-bonuses__step-card {
  background-color: var(--ok9-secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  color: var(--ok9-dark-text);
}

.page-promotions-deposit-bonuses__step-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ok9-primary-color);
  margin-bottom: 15px;
}

.page-promotions-deposit-bonuses__step-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-promotions-deposit-bonuses__info-card {
  background-color: var(--ok9-secondary-color);
  border-left: 5px solid var(--ok9-primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  color: var(--ok9-dark-text);
}

.page-promotions-deposit-bonuses__info-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ok9-dark-text);
  margin-bottom: 10px;
}

.page-promotions-deposit-bonuses__info-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-promotions-deposit-bonuses__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-deposit-bonuses__tips-list li {
  background-color: var(--ok9-secondary-color);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ok9-dark-text);
  border-left: 4px solid var(--ok9-primary-color);
}

.page-promotions-deposit-bonuses__tips-list li strong {
  color: var(--ok9-primary-color);
}

.page-promotions-deposit-bonuses__faq-list {
  margin-top: 30px;
}

.page-promotions-deposit-bonuses__faq-item {
  background-color: var(--ok9-secondary-color);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promotions-deposit-bonuses__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ok9-dark-text);
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-promotions-deposit-bonuses__faq-question:hover {
  background-color: #e8e8e8;
}

.page-promotions-deposit-bonuses__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-left: 15px;
  color: var(--ok9-primary-color);
}

.page-promotions-deposit-bonuses__faq-item[open] .page-promotions-deposit-bonuses__faq-question {
  background-color: var(--ok9-primary-color);
  color: var(--ok9-light-text);
}

.page-promotions-deposit-bonuses__faq-item[open] .page-promotions-deposit-bonuses__faq-toggle {
  color: var(--ok9-light-text);
}

.page-promotions-deposit-bonuses__faq-answer {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ok9-dark-text);
  border-top: 1px solid #eee;
}

.page-promotions-deposit-bonuses__faq-item[open] .page-promotions-deposit-bonuses__faq-answer {
  border-top: none;
}

.page-promotions-deposit-bonuses__cta-section {
  background-color: var(--ok9-primary-color);
  padding: 60px 20px;
  text-align: center;
  color: var(--ok9-light-text);
}

.page-promotions-deposit-bonuses__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-deposit-bonuses__cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ok9-light-text);
}

.page-promotions-deposit-bonuses__cta-description {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-deposit-bonuses__cta-section .page-promotions-deposit-bonuses__btn-primary {
  background-color: var(--ok9-secondary-color);
  color: var(--ok9-primary-color);
  border-color: var(--ok9-secondary-color);
}

.page-promotions-deposit-bonuses__cta-section .page-promotions-deposit-bonuses__btn-primary:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

/* GLOBAL IMAGE AND VIDEO RESPONSIVENESS */
.page-promotions-deposit-bonuses img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions-deposit-bonuses video,
.page-promotions-deposit-bonuses__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-promotions-deposit-bonuses__video-section,
.page-promotions-deposit-bonuses__video-container,
.page-promotions-deposit-bonuses__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .page-promotions-deposit-bonuses {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-deposit-bonuses__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-promotions-deposit-bonuses__main-title {
    font-size: 2rem;
  }

  .page-promotions-deposit-bonuses__hero-description {
    font-size: 1rem;
  }

  .page-promotions-deposit-bonuses__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-deposit-bonuses__btn-primary,
  .page-promotions-deposit-bonuses__btn-secondary,
  .page-promotions-deposit-bonuses a[class*="button"],
  .page-promotions-deposit-bonuses a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-deposit-bonuses__content-area,
  .page-promotions-deposit-bonuses__section {
    padding: 30px 15px;
  }

  .page-promotions-deposit-bonuses__section-title {
    font-size: 1.8rem;
  }

  .page-promotions-deposit-bonuses__promotions-grid,
  .page-promotions-deposit-bonuses__info-cards-grid,
  .page-promotions-deposit-bonuses__steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-deposit-bonuses__card,
  .page-promotions-deposit-bonuses__step-card,
  .page-promotions-deposit-bonuses__info-card,
  .page-promotions-deposit-bonuses__tips-list li,
  .page-promotions-deposit-bonuses__faq-item {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-deposit-bonuses__card-image {
    height: 180px;
  }

  .page-promotions-deposit-bonuses__cta-title {
    font-size: 2rem;
  }

  .page-promotions-deposit-bonuses__cta-description {
    font-size: 1rem;
  }

  .page-promotions-deposit-bonuses img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions-deposit-bonuses video,
  .page-promotions-deposit-bonuses__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions-deposit-bonuses__video-section,
  .page-promotions-deposit-bonuses__video-container,
  .page-promotions-deposit-bonuses__video-wrapper,
  .page-promotions-deposit-bonuses__promotions-grid,
  .page-promotions-deposit-bonuses__steps-container,
  .page-promotions-deposit-bonuses__info-cards-grid,
  .page-promotions-deposit-bonuses__cta-section,
  .page-promotions-deposit-bonuses__faq-list,
  .page-promotions-deposit-bonuses__tips-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}