/* style/index-pkwin-featured-games.css */
.page-index-pkwin-featured-games {
  font-family: 'Arial', sans-serif;
  color: #e5e5d1; /* Light text for dark background */
  background-color: #1A1A2E;
  line-height: 1.6;
}

.page-index-pkwin-featured-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-pkwin-featured-games__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-pkwin-featured-games__section:nth-of-type(even) {
  background-color: #2a2a3e; /* Slightly lighter dark background */
}

.page-index-pkwin-featured-games__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E94560; /* Vibrant red for titles */
  font-weight: bold;
}

.page-index-pkwin-featured-games__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #cccccc;
}

.page-index-pkwin-featured-games__highlight {
  color: #E94560;
}

/* Hero Section */
.page-index-pkwin-featured-games__hero-section {
  background: linear-gradient(135deg, #1A1A2E, #3b1a2e);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-index-pkwin-featured-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.page-index-pkwin-featured-games__hero-title {
  font-size: 3.8em;
  color: #e5e5d1;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-pkwin-featured-games__hero-subtitle {
  font-size: 1.5em;
  color: #cccccc;
  margin-bottom: 40px;
}

.page-index-pkwin-featured-games__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-pkwin-featured-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-index-pkwin-featured-games__btn--primary {
  background-color: #E94560;
  color: #e5e5d1;
  border: 2px solid #E94560;
}

.page-index-pkwin-featured-games__btn--primary:hover {
  background-color: #c03a51;
  border-color: #c03a51;
  transform: translateY(-3px);
}

.page-index-pkwin-featured-games__btn--secondary {
  background-color: transparent;
  color: #E94560;
  border: 2px solid #E94560;
}

.page-index-pkwin-featured-games__btn--secondary:hover {
  background-color: #E94560;
  color: #1A1A2E;
  transform: translateY(-3px);
}

.page-index-pkwin-featured-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-pkwin-featured-games__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-index-pkwin-featured-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
}

.page-index-pkwin-featured-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  transform: scale(1.1);
}

/* Game Categories */
.page-index-pkwin-featured-games__game-categories {
  padding-top: 60px;
}

.page-index-pkwin-featured-games__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-pkwin-featured-games__category-card {
  background-color: #1A1A2E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3b3b5e;
}

.page-index-pkwin-featured-games__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index-pkwin-featured-games__category-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(233, 69, 96, 0.5));
}

.page-index-pkwin-featured-games__category-title {
  font-size: 1.8em;
  color: #E94560;
  margin-bottom: 15px;
}

.page-index-pkwin-featured-games__category-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
}

/* Why PKwin Section */
.page-index-pkwin-featured-games__why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-pkwin-featured-games__why-item {
  background-color: #1A1A2E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #3b3b5e;
}

.page-index-pkwin-featured-games__why-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(233, 69, 96, 0.5));
}

.page-index-pkwin-featured-games__why-title {
  font-size: 1.6em;
  color: #e5e5d1;
  margin-bottom: 10px;
}

.page-index-pkwin-featured-games__why-text {
  font-size: 0.95em;
  color: #cccccc;
}

/* Promotions Section */
.page-index-pkwin-featured-games__promotions {
  background-color: #2a2a3e;
}

.page-index-pkwin-featured-games__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-pkwin-featured-games__promo-card {
  background-color: #1A1A2E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3b3b5e;
}

.page-index-pkwin-featured-games__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-index-pkwin-featured-games__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-pkwin-featured-games__promo-card h3,
.page-index-pkwin-featured-games__promo-card p,
.page-index-pkwin-featured-games__promo-card .page-index-pkwin-featured-games__btn {
  padding: 0 25px;
}

.page-index-pkwin-featured-games__promo-title {
  font-size: 1.5em;
  color: #E94560;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-index-pkwin-featured-games__promo-text {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-index-pkwin-featured-games__promo-card .page-index-pkwin-featured-games__btn {
  margin-bottom: 25px;
}

.page-index-pkwin-featured-games__cta-bottom {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #3b3b5e;
}

.page-index-pkwin-featured-games__cta-text {
  font-size: 1.3em;
  color: #e5e5d1;
  margin-bottom: 25px;
}

/* App Download Section */
.page-index-pkwin-featured-games__app-download {
  background-color: #1A1A2E;
  text-align: left;
}

.page-index-pkwin-featured-games__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-index-pkwin-featured-games__app-text-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-index-pkwin-featured-games__app-text-content .page-index-pkwin-featured-games__section-title {
  text-align: left;
}

.page-index-pkwin-featured-games__app-text-content .page-index-pkwin-featured-games__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-index-pkwin-featured-games__app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.page-index-pkwin-featured-games__btn--icon {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #E94560;
  color: #e5e5d1;
  border: 2px solid #E94560;
}

.page-index-pkwin-featured-games__btn--icon:hover {
  background-color: #c03a51;
  border-color: #c03a51;
  transform: translateY(-3px);
}

.page-index-pkwin-featured-games__icon-btn {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.page-index-pkwin-featured-games__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-pkwin-featured-games__app-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.page-index-pkwin-featured-games__faq {
  background-color: #2a2a3e;
}

.page-index-pkwin-featured-games__accordion {
  max-width: 900px;
  margin: 50px auto 0;
  text-align: left;
}

.page-index-pkwin-featured-games__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #3b3b5e;
  border-radius: 8px;
  overflow: hidden;
}

.page-index-pkwin-featured-games__accordion-header {
  background-color: #1A1A2E;
  color: #e5e5d1;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-index-pkwin-featured-games__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-pkwin-featured-games__accordion-header.active {
  background-color: #3b3b5e;
}

.page-index-pkwin-featured-games__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-pkwin-featured-games__accordion-content {
  background-color: #2a2a3e;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-index-pkwin-featured-games__accordion-content p {
  color: #cccccc;
  padding-bottom: 20px;
  margin: 0;
}

.page-index-pkwin-featured-games__accordion-content a {
  color: #E94560;
  text-decoration: none;
}

.page-index-pkwin-featured-games__accordion-content a:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.page-index-pkwin-featured-games__cta-final {
  background: linear-gradient(45deg, #1A1A2E, #E94560);
  padding: 100px 0;
}

.page-index-pkwin-featured-games__cta-content {
  max-width: 800px;
}

.page-index-pkwin-featured-games__cta-title {
  font-size: 3em;
  color: #e5e5d1;
  margin-bottom: 20px;
}

.page-index-pkwin-featured-games__cta-description {
  font-size: 1.2em;
  color: #cccccc;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-pkwin-featured-games__hero-title {
    font-size: 3em;
  }
  .page-index-pkwin-featured-games__section-title {
    font-size: 2.2em;
  }
  .page-index-pkwin-featured-games__cta-title {
    font-size: 2.5em;
  }
  .page-index-pkwin-featured-games__app-content {
    flex-direction: column;
  }
  .page-index-pkwin-featured-games__app-text-content,
  .page-index-pkwin-featured-games__app-image-wrapper {
    max-width: 100%;
    text-align: center;
  }
  .page-index-pkwin-featured-games__app-text-content .page-index-pkwin-featured-games__section-title,
  .page-index-pkwin-featured-games__app-text-content .page-index-pkwin-featured-games__section-description {
    text-align: center;
  }
  .page-index-pkwin-featured-games__app-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-index-pkwin-featured-games__hero-title {
    font-size: 2.5em;
  }
  .page-index-pkwin-featured-games__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-pkwin-featured-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-pkwin-featured-games__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-index-pkwin-featured-games__section {
    padding: 60px 0;
  }
  .page-index-pkwin-featured-games__section-title {
    font-size: 1.8em;
  }
  .page-index-pkwin-featured-games__cta-title {
    font-size: 2em;
  }
  .page-index-pkwin-featured-games__categories-grid,
  .page-index-pkwin-featured-games__why-grid,
  .page-index-pkwin-featured-games__promotions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-pkwin-featured-games__hero-title {
    font-size: 2em;
  }
  .page-index-pkwin-featured-games__hero-subtitle {
    font-size: 1em;
  }
  .page-index-pkwin-featured-games__section-title {
    font-size: 1.6em;
  }
  .page-index-pkwin-featured-games__cta-title {
    font-size: 1.8em;
  }
  .page-index-pkwin-featured-games__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-index-pkwin-featured-games__app-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-index-pkwin-featured-games__btn--icon {
    width: 100%;
    max-width: 280px;
  }
}