.page-index {
  /* Assuming body has a dark background from shared.css, use light text */
  color: #f8f9fa; /* Light text for general content */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-index__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #1a2a3a, #0a1a2a);
}

.page-index__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.page-index__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  object-fit: cover;
  pointer-events: none; /* Prevents video controls from blocking click event */
}

.page-index__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-index__video-link:hover .page-index__video-overlay {
  opacity: 1;
}

.page-index__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  padding: 12px 25px;
  background: rgba(38, 169, 224, 0.8);
  border-radius: 30px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.page-index__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
}

.page-index__play-now-button {
  display: inline-block;
  padding: 18px 50px;
  background: #EA7C07; /* Login color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 35px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-index__play-now-button:hover {
  background: #d36a00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index__hero-section {
  text-align: center;
  padding: 80px 20px;
  background: #1e2e3e; /* Slightly darker than video section for contrast */
  color: #ffffff;
}

.page-index__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-index__main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #26A9E0; /* Brand primary color */
  line-height: 1.2;
}

.page-index__hero-description {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-index__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-index__cta-button {
  display: inline-block;
  padding: 16px 45px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index__cta-button--primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-index__cta-button--primary:hover {
  background: #1e87b7;
  border-color: #1e87b7;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index__cta-button--secondary {
  background: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-index__cta-button--secondary:hover {
  background: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index__features-section, .page-index__promotions-section, .page-index__why-choose-us-section, .page-index__faq-section, .page-index__brand-section, .page-index__blog-section, .page-index__call-to-action-section {
  padding: 80px 20px;
  text-align: center;
}

.page-index__dark-bg {
  background: #1e2e3e;
  color: #ffffff;
}

.page-index__light-bg {
  background: #ffffff;
  color: #333333;
}

.page-index__features-container, .page-index__promotions-container, .page-index__why-choose-us-container, .page-index__faq-container, .page-index__brand-container, .page-index__blog-container, .page-index__call-to-action-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__features-title, .page-index__promotions-title, .page-index__why-choose-us-title, .page-index__faq-main-title, .page-index__brand-title, .page-index__blog-title, .page-index__call-to-action-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from section for contrast */
}

.page-index__features-section .page-index__features-title, .page-index__promotions-section .page-index__promotions-title, .page-index__faq-section .page-index__faq-main-title, .page-index__blog-section .page-index__blog-title, .page-index__call-to-action-section .page-index__call-to-action-title {
  color: #26A9E0;
}

.page-index__dark-bg .page-index__features-title, .page-index__dark-bg .page-index__brand-title, .page-index__dark-bg .page-index__call-to-action-title {
  color: #ffffff;
}

.page-index__features-description, .page-index__promotions-description, .page-index__why-choose-us-description, .page-index__blog-description, .page-index__call-to-action-description {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.7;
  color: inherit;
}

.page-index__dark-bg .page-index__features-description, .page-index__dark-bg .page-index__brand-item-text, .page-index__dark-bg .page-index__call-to-action-description {
  color: #e0e0e0;
}

.page-index__features-grid, .page-index__promotions-grid, .page-index__why-choose-us-grid, .page-index__brand-content, .page-index__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index__feature-card, .page-index__promo-card, .page-index__reason-card, .page-index__blog-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index__dark-bg .page-index__feature-card, .page-index__dark-bg .page-index__promo-card, .page-index__dark-bg .page-index__blog-item {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  color: #ffffff;
}

.page-index__feature-card:hover, .page-index__promo-card:hover, .page-index__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index__feature-image, .page-index__promo-image, .page-index__blog-item-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-index__reason-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px auto;
}

.page-index__feature-card-title, .page-index__promo-card-title, .page-index__reason-title, .page-index__blog-item-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-index__dark-bg .page-index__feature-card-title, .page-index__dark-bg .page-index__promo-card-title, .page-index__dark-bg .page-index__blog-item-title {
  color: #ffffff;
}

.page-index__feature-card-text, .page-index__promo-card-text, .page-index__reason-text, .page-index__blog-item-excerpt {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555555;
}

.page-index__dark-bg .page-index__feature-card-text, .page-index__dark-bg .page-index__promo-card-text, .page-index__dark-bg .page-index__blog-item-excerpt {
  color: #cccccc;
}

.page-index__feature-card-link, .page-index__promo-card-link {
  display: inline-block;
  padding: 10px 25px;
  background: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto;
}

.page-index__feature-card-link:hover, .page-index__promo-card-link:hover {
  background: #1e87b7;
  transform: translateY(-2px);
}

.page-index__view-all-promos, .page-index__view-all-news {
  margin-top: 50px;
}

.page-index__faq-section {
  background: #f8f9fa;
  color: #333333;
}

.page-index__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-index__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #f0f0f0;
}

.page-index__faq-item.active .page-index__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain any content */
  padding: 20px 25px !important;
  opacity: 1;
  background: #f0f0f0;
  border-radius: 0 0 8px 8px;
}

.page-index__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-index__faq-question:active {
  background: #eeeeee;
}

.page-index__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Prevents h3 from blocking click event */
  color: #333333;
}

.page-index__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none; /* Prevents icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-index__faq-item.active .page-index__faq-toggle {
  color: #26A9E0;
  transform: rotate(45deg); /* Visually change to 'x' or rotate '+' */
}

.page-index__brand-section {
  background: #1a2a3a;
  color: #ffffff;
}

.page-index__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index__brand-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-index__brand-item-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-index__brand-item-text {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
}

.page-index__blog-section {
  background: #f8f9fa;
  color: #333333;
}

.page-index__blog-list {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-index__blog-item {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-index__blog-item-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 8px;
}

.page-index__blog-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-index__blog-item-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-index__blog-item-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
}

.page-index__blog-item-date {
  font-size: 14px;
  color: #888888;
  margin-top: 15px;
  display: block;
}

.page-index__call-to-action-section {
  background: #26A9E0; /* Brand primary color for CTA */
  color: #ffffff;
  padding: 100px 20px;
}

.page-index__call-to-action-title {
  font-size: 42px;
  color: #ffffff;
}

.page-index__call-to-action-description {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index__main-title {
    font-size: 42px;
  }
  .page-index__hero-description {
    font-size: 18px;
  }
  .page-index__features-title, .page-index__promotions-title, .page-index__why-choose-us-title, .page-index__faq-main-title, .page-index__brand-title, .page-index__blog-title, .page-index__call-to-action-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .page-index__video-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-index__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-index__video-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-index__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 8px;
    overflow: hidden !important;
  }

  .page-index__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
    object-fit: contain; /* Ensure video is fully visible */
  }

  .page-index__video-click-hint {
    font-size: 16px !important;
    padding: 10px 20px !important;
  }

  .page-index__video-cta {
    margin-top: 25px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-index__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 15px 30px !important;
    font-size: 18px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-index__hero-section {
    padding: 60px 15px;
  }

  .page-index__main-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .page-index__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-index__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-index__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 25px;
    font-size: 16px;
  }

  .page-index__features-section, .page-index__promotions-section, .page-index__why-choose-us-section, .page-index__faq-section, .page-index__brand-section, .page-index__blog-section, .page-index__call-to-action-section {
    padding: 50px 15px;
  }

  .page-index__features-title, .page-index__promotions-title, .page-index__why-choose-us-title, .page-index__faq-main-title, .page-index__brand-title, .page-index__blog-title, .page-index__call-to-action-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-index__features-description, .page-index__promotions-description, .page-index__why-choose-us-description, .page-index__blog-description, .page-index__call-to-action-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-index__features-grid, .page-index__promotions-grid, .page-index__why-choose-us-grid, .page-index__brand-content, .page-index__blog-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-index__feature-card, .page-index__promo-card, .page-index__reason-card, .page-index__blog-item {
    padding: 25px;
  }

  .page-index__feature-image, .page-index__promo-image, .page-index__blog-item-image {
    height: 180px; /* Adjust height for mobile */
  }

  .page-index__reason-icon {
    width: 80px;
    height: 80px;
  }

  .page-index__feature-card-title, .page-index__promo-card-title, .page-index__reason-title, .page-index__blog-item-title {
    font-size: 20px;
  }

  .page-index__feature-card-text, .page-index__promo-card-text, .page-index__reason-text, .page-index__blog-item-excerpt {
    font-size: 15px;
  }

  .page-index__faq-question {
    padding: 15px 20px;
  }

  .page-index__faq-question h3 {
    font-size: 16px;
  }

  .page-index__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-index__faq-item.active .page-index__faq-answer {
    padding: 15px 20px !important;
  }

  .page-index__brand-item-title {
    font-size: 20px;
  }

  .page-index__brand-item-text {
    font-size: 15px;
  }

  .page-index__call-to-action-section {
    padding: 60px 15px;
  }

  .page-index__call-to-action-title {
    font-size: 32px;
  }

  .page-index__call-to-action-description {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .page-index img, .page-index video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-index__section, .page-index__card, .page-index__container, .page-index__video-section, .page-index__video-container, .page-index__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}