/* style/resources-b66-club-apk-features.css */
.page-resources-b66-club-apk-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-resources-b66-club-apk-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-resources-b66-club-apk-features__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-resources-b66-club-apk-features__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Section */
.page-resources-b66-club-apk-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-resources-b66-club-apk-features__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-resources-b66-club-apk-features__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-resources-b66-club-apk-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-b66-club-apk-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-b66-club-apk-features__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-resources-b66-club-apk-features__btn-primary,
.page-resources-b66-club-apk-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-b66-club-apk-features__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-b66-club-apk-features__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-resources-b66-club-apk-features__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-b66-club-apk-features__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Section Titles & Descriptions */
.page-resources-b66-club-apk-features__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-b66-club-apk-features__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* Video Section */
.page-resources-b66-club-apk-features__video-section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-b66-club-apk-features__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
}

.page-resources-b66-club-apk-features__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-resources-b66-club-apk-features__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* Features Grid */
.page-resources-b66-club-apk-features__features-grid {
  padding: 80px 0;
}

.page-resources-b66-club-apk-features__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-b66-club-apk-features__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-b66-club-apk-features__feature-card:hover {
  transform: translateY(-10px);
}

.page-resources-b66-club-apk-features__feature-icon {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-b66-club-apk-features__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-resources-b66-club-apk-features__feature-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-b66-club-apk-features__feature-title a:hover {
  color: #ffffff;
}

.page-resources-b66-club-apk-features__feature-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Security Section */
.page-resources-b66-club-apk-features__security-section {
  padding: 80px 0;
}

.page-resources-b66-club-apk-features__security-section .page-resources-b66-club-apk-features__container {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-resources-b66-club-apk-features__security-content {
  flex: 1;
}

.page-resources-b66-club-apk-features__security-section .page-resources-b66-club-apk-features__section-title,
.page-resources-b66-club-apk-features__security-section .page-resources-b66-club-apk-features__section-description {
  text-align: left;
  color: #333333;
}

.page-resources-b66-club-apk-features__security-section .page-resources-b66-club-apk-features__section-description {
  color: #555555;
}

.page-resources-b66-club-apk-features__security-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-resources-b66-club-apk-features__security-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
  position: relative;
  padding-left: 25px;
}

.page-resources-b66-club-apk-features__security-list li::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
  top: 0;
}

.page-resources-b66-club-apk-features__security-image {
  width: 500px;
  height: 375px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

/* App Download Section */
.page-resources-b66-club-apk-features__app-download-section {
  padding: 80px 0;
}

.page-resources-b66-club-apk-features__app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-direction: row-reverse; /* Image on left, text on right */
  text-align: left;
}

.page-resources-b66-club-apk-features__app-image {
  width: 400px;
  height: 600px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-resources-b66-club-apk-features__app-text-content {
  flex: 1;
}

.page-resources-b66-club-apk-features__app-download-section .page-resources-b66-club-apk-features__section-title,
.page-resources-b66-club-apk-features__app-download-section .page-resources-b66-club-apk-features__section-description {
  text-align: left;
  color: #ffffff;
}

.page-resources-b66-club-apk-features__app-download-section .page-resources-b66-club-apk-features__section-description {
  color: #f0f0f0;
}

.page-resources-b66-club-apk-features__app-benefits-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-resources-b66-club-apk-features__app-benefits-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #f0f0f0;
  position: relative;
  padding-left: 25px;
}

.page-resources-b66-club-apk-features__app-benefits-list li::before {
  content: '★';
  color: #26A9E0;
  position: absolute;
  left: 0;
  top: 0;
}

/* Promotions Section */
.page-resources-b66-club-apk-features__promotions-section {
  padding: 80px 0;
}

.page-resources-b66-club-apk-features__promotions-section .page-resources-b66-club-apk-features__container {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-resources-b66-club-apk-features__promotions-content {
  flex: 1;
}

.page-resources-b66-club-apk-features__promotions-section .page-resources-b66-club-apk-features__section-title,
.page-resources-b66-club-apk-features__promotions-section .page-resources-b66-club-apk-features__section-description {
  text-align: left;
  color: #333333;
}

.page-resources-b66-club-apk-features__promotions-section .page-resources-b66-club-apk-features__section-description {
  color: #555555;
}

.page-resources-b66-club-apk-features__promotions-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-resources-b66-club-apk-features__promotions-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
  position: relative;
  padding-left: 25px;
}

.page-resources-b66-club-apk-features__promotions-list li::before {
  content: '✓';
  color: #26A9E0;
  position: absolute;
  left: 0;
  top: 0;
}

.page-resources-b66-club-apk-features__promotions-image {
  width: 500px;
  height: 375px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

/* FAQ Section */
.page-resources-b66-club-apk-features__faq-section {
  padding: 80px 0;
}

.page-resources-b66-club-apk-features__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-b66-club-apk-features__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-resources-b66-club-apk-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 8px;
}

.page-resources-b66-club-apk-features__faq-question:hover {
  background-color: #1e87b7;
}

.page-resources-b66-club-apk-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-b66-club-apk-features__faq-item.active .page-resources-b66-club-apk-features__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-b66-club-apk-features__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.03);
  color: #f0f0f0;
}

.page-resources-b66-club-apk-features__faq-item.active .page-resources-b66-club-apk-features__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 20px 25px;
}

.page-resources-b66-club-apk-features__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

/* CTA Bottom Section */
.page-resources-b66-club-apk-features__cta-bottom {
  padding: 80px 0;
  text-align: center;
}

.page-resources-b66-club-apk-features__cta-bottom .page-resources-b66-club-apk-features__section-title {
  color: #ffffff;
}

.page-resources-b66-club-apk-features__cta-bottom .page-resources-b66-club-apk-features__section-description {
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-b66-club-apk-features__hero-title {
    font-size: 3em;
  }

  .page-resources-b66-club-apk-features__section-title {
    font-size: 2em;
  }

  .page-resources-b66-club-apk-features__security-section .page-resources-b66-club-apk-features__container,
  .page-resources-b66-club-apk-features__app-content,
  .page-resources-b66-club-apk-features__promotions-section .page-resources-b66-club-apk-features__container {
    flex-direction: column;
    text-align: center;
  }

  .page-resources-b66-club-apk-features__security-image,
  .page-resources-b66-club-apk-features__app-image,
  .page-resources-b66-club-apk-features__promotions-image {
    max-width: 80%;
    height: auto;
    margin-top: 30px;
  }

  .page-resources-b66-club-apk-features__security-section .page-resources-b66-club-apk-features__section-title,
  .page-resources-b66-club-apk-features__security-section .page-resources-b66-club-apk-features__section-description {
    text-align: center;
  }

  .page-resources-b66-club-apk-features__app-download-section .page-resources-b66-club-apk-features__section-title,
  .page-resources-b66-club-apk-features__app-download-section .page-resources-b66-club-apk-features__section-description {
    text-align: center;
  }

  .page-resources-b66-club-apk-features__promotions-section .page-resources-b66-club-apk-features__section-title,
  .page-resources-b66-club-apk-features__promotions-section .page-resources-b66-club-apk-features__section-description {
    text-align: center;
  }

  .page-resources-b66-club-apk-features__security-list,
  .page-resources-b66-club-apk-features__app-benefits-list,
  .page-resources-b66-club-apk-features__promotions-list {
    text-align: left; /* Keep list items aligned left even if section title is centered */
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .page-resources-b66-club-apk-features {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-b66-club-apk-features__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-b66-club-apk-features__hero-title {
    font-size: 2.2em;
  }

  .page-resources-b66-club-apk-features__hero-description {
    font-size: 1em;
  }
}
}