/* style/index-b29-club-highlights.css */
.page-index-b29-club-highlights {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0F1A2B; /* A slightly lighter dark blue for contrast */
  line-height: 1.6;
}

.page-index-b29-club-highlights__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-b29-club-highlights__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-b29-club-highlights__section:nth-of-type(odd) {
  background-color: #1A2E47; /* Primary dark blue */
}

.page-index-b29-club-highlights__section:nth-of-type(even) {
  background-color: #0F1A2B; /* Slightly lighter dark blue for contrast */
}

.page-index-b29-club-highlights__hero-section {
  background: linear-gradient(135deg, #1A2E47 0%, #0F1A2B 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-index-b29-club-highlights__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-b29-club-highlights__hero-section .page-index-b29-club-highlights__container {
  position: relative;
  z-index: 1;
}

.page-index-b29-club-highlights__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-b29-club-highlights__hero-description {
  font-size: 1.2em;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-index-b29-club-highlights__hero-image-wrapper {
  margin-top: 40px;
  width: 90%;
  max-width: 1000px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-b29-club-highlights__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-index-b29-club-highlights__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-b29-club-highlights__section-intro {
  font-size: 1.1em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-index-b29-club-highlights__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-index-b29-club-highlights__btn--primary {
  background-color: #FFD700; /* Gold for primary actions */
  color: #1A2E47; /* Dark blue for text on gold */
}

.page-index-b29-club-highlights__btn--primary:hover {
  background-color: #E5C100;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-b29-club-highlights__btn--secondary {
  background-color: #1A2E47; /* Dark blue for secondary actions */
  color: #FFD700; /* Gold for text on dark blue */
  border: 2px solid #FFD700;
}

.page-index-b29-club-highlights__btn--secondary:hover {
  background-color: #0F1A2B;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-index-b29-club-highlights__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-b29-club-highlights__btn--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

/* Why Choose Section */
.page-index-b29-club-highlights__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-b29-club-highlights__feature-item {
  background-color: #0F1A2B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-index-b29-club-highlights__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-b29-club-highlights__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-b29-club-highlights__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-b29-club-highlights__feature-description {
  font-size: 1em;
  color: #D0D0D0;
  line-height: 1.7;
}

/* Games Section */
.page-index-b29-club-highlights__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-b29-club-highlights__game-card {
  background-color: #1A2E47;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-index-b29-club-highlights__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-b29-club-highlights__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-b29-club-highlights__game-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-index-b29-club-highlights__game-description {
  font-size: 0.95em;
  color: #D0D0D0;
  padding: 0 15px 20px;
}

.page-index-b29-club-highlights__cta-center {
  margin-top: 50px;
}

/* Promotions Section */
.page-index-b29-club-highlights__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-b29-club-highlights__promo-card {
  background-color: #0F1A2B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid #FFD700;
}

.page-index-b29-club-highlights__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-b29-club-highlights__promo-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-index-b29-club-highlights__promo-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-b29-club-highlights__promo-description {
  font-size: 1em;
  color: #D0D0D0;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Guide Section */
.page-index-b29-club-highlights__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-b29-club-highlights__step-item {
  background-color: #1A2E47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-b29-club-highlights__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-b29-club-highlights__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-b29-club-highlights__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-b29-club-highlights__step-description {
  font-size: 1em;
  color: #D0D0D0;
  line-height: 1.7;
}

.page-index-b29-club-highlights__cta-group {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* App Download Section */
.page-index-b29-club-highlights__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-index-b29-club-highlights__app-text {
  flex: 1;
  min-width: 300px;
}

.page-index-b29-club-highlights__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-b29-club-highlights__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-index-b29-club-highlights__app-features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  color: #D0D0D0;
}

.page-index-b29-club-highlights__app-features-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.page-index-b29-club-highlights__list-icon {
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 10px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Final CTA Section */
.page-index-b29-club-highlights__section--cta {
  background: linear-gradient(45deg, #FFD700 0%, #E5C100 100%);
  color: #1A2E47;
  padding: 80px 0;
}

.page-index-b29-club-highlights__cta-content {
  background-color: rgba(26, 46, 71, 0.95); /* Dark blue with slight transparency */
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.page-index-b29-club-highlights__cta-title {
  color: #FFD700; /* Gold for CTA title */
  font-size: 3em;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-b29-club-highlights__cta-description {
  color: #E0E0E0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Floating Promo */
.page-index-b29-club-highlights__floating-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: page-index-b29-club-highlights__float 2s ease-in-out infinite;
}

.page-index-b29-club-highlights__floating-promo-link {
  background-color: #FFD700; /* Gold */
  color: #1A2E47; /* Dark blue */
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
}

.page-index-b29-club-highlights__floating-promo-link:hover {
  background-color: #E5C100;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.page-index-b29-club-highlights__floating-promo-text {
  margin-right: 10px;
}

.page-index-b29-club-highlights__floating-promo-arrow {
  font-size: 1.3em;
}

@keyframes page-index-b29-club-highlights__float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-b29-club-highlights__hero-title {
    font-size: 2.8em;
  }
  .page-index-b29-club-highlights__section-title {
    font-size: 2.2em;
  }
  .page-index-b29-club-highlights__cta-title {
    font-size: 2.5em;
  }
  .page-index-b29-club-highlights__features-grid,
  .page-index-b29-club-highlights__game-categories,
  .page-index-b29-club-highlights__promo-grid,
  .page-index-b29-club-highlights__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-b29-club-highlights__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-b29-club-highlights__app-text, .page-index-b29-club-highlights__app-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-index-b29-club-highlights__app-features-list {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-index-b29-club-highlights__hero-title {
    font-size: 2.2em;
  }
  .page-index-b29-club-highlights__hero-description {
    font-size: 1.1em;
  }
  .page-index-b29-club-highlights__section-title {
    font-size: 1.8em;
  }
  .page-index-b29-club-highlights__cta-title {
    font-size: 2em;
  }
  .page-index-b29-club-highlights__section,
  .page-index-b29-club-highlights__hero-section {
    padding: 40px 0;
  }
  .page-index-b29-club-highlights__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-index-b29-club-highlights__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-b29-club-highlights__floating-promo {
    bottom: 15px;
    right: 15px;
  }
  .page-index-b29-club-highlights__floating-promo-link {
    padding: 12px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index-b29-club-highlights__hero-title {
    font-size: 1.8em;
  }
  .page-index-b29-club-highlights__hero-description {
    font-size: 1em;
  }
  .page-index-b29-club-highlights__section-title {
    font-size: 1.5em;
  }
  .page-index-b29-club-highlights__cta-title {
    font-size: 1.6em;
  }
  .page-index-b29-club-highlights__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-index-b29-club-highlights__cta-content {
    padding: 30px;
  }
  .page-index-b29-club-highlights__floating-promo {
    bottom: 10px;
    right: 10px;
  }
  .page-index-b29-club-highlights__floating-promo-link {
    padding: 10px 15px;
    font-size: 0.9em;
  }
  .page-index-b29-club-highlights__floating-promo-text {
    margin-right: 5px;
  }
  .page-index-b29-club-highlights__floating-promo-arrow {
    font-size: 1.1em;
  }
}