/* style/player-stories.css */
.page-player-stories {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #546474; /* Darker text for light background */
  background-color: #f8f8f8;
}

.page-player-stories__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-player-stories__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #304C6C 100%); /* Dark blue gradient */
  color: #f8f8f8; /* Light text on dark background */
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-player-stories__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-player-stories__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
}

.page-player-stories__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f5ddc6; /* Lighter gold/cream for subtitle */
}

.page-player-stories__hero-image-container {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  opacity: 0.1;
  z-index: 0;
}

.page-player-stories__hero-image {
  width: 500px;
  height: auto;
  border-radius: 50%;
  filter: grayscale(100%);
  transform: rotate(15deg);
}

.page-player-stories__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-player-stories__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-player-stories__section-title {
  font-size: 2.5em;
  color: #0A2239; /* Dark blue for main titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-player-stories__section-description {
  font-size: 1.1em;
  color: #546474;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-player-stories__stories-grid {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-player-stories__story-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-player-stories__story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-player-stories__story-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-player-stories__story-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-player-stories__story-title {
  font-size: 1.8em;
  color: #0A2239;
  margin-bottom: 15px;
}

.page-player-stories__story-title a.page-player-stories__story-link {
  color: #0A2239;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-player-stories__story-title a.page-player-stories__story-link:hover {
  color: #FFD700;
}

.page-player-stories__story-excerpt {
  color: #546474;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-player-stories__read-more {
  display: inline-block;
  color: #FFD700; /* Gold link */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-player-stories__read-more:hover {
  color: #0A2239;
}

.page-player-stories__why-88online {
  background-color: #0A2239;
  padding: 80px 0;
}

.page-player-stories__why-88online .page-player-stories__section-title {
  color: #FFD700; /* Gold title on dark background */
}

.page-player-stories__why-88online .page-player-stories__section-description {
  color: #f5ddc6; /* Lighter gold/cream for description */
}

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

.page-player-stories__feature-item {
  background-color: #1A3C5B; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-player-stories__feature-item:hover {
  transform: translateY(-5px);
  background-color: #2A4E70; /* Even lighter dark blue on hover */
}

.page-player-stories__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-player-stories__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold title */
  margin-bottom: 15px;
}

.page-player-stories__feature-description {
  color: #f5ddc6;
  font-size: 0.95em;
}

.page-player-stories__cta-section {
  background: #f0f0f0;
  padding: 80px 0;
  text-align: center;
}

.page-player-stories__cta-content {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-player-stories__cta-title {
  font-size: 2.2em;
  color: #0A2239;
  margin-bottom: 20px;
}

.page-player-stories__cta-description {
  font-size: 1.2em;
  color: #546474;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-player-stories__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-player-stories__cta-button--primary {
  background-color: #FFD700;
  color: #0A2239;
}

.page-player-stories__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-player-stories__cta-button--secondary {
  background-color: #0A2239;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-player-stories__cta-button--secondary:hover {
  background-color: #1A3C5B;
  color: #FFD700;
  border-color: #FFD700;
}

.page-player-stories__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-player-stories__faq-item {
  background-color: #f8f8f8;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-player-stories__faq-question {
  font-size: 1.3em;
  color: #0A2239;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-player-stories__faq-answer {
  color: #546474;
  line-height: 1.8;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-player-stories__stories-grid .page-player-stories__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .page-player-stories__story-card {
    flex-direction: row;
  }

  .page-player-stories__story-image {
    width: 40%;
    height: auto;
  }

  .page-player-stories__story-content {
    width: 60%;
  }
}

@media (max-width: 1024px) {
  .page-player-stories__hero-title {
    font-size: 2.8em;
  }
  .page-player-stories__hero-subtitle {
    font-size: 1.3em;
  }
  .page-player-stories__section-title {
    font-size: 2em;
  }
  .page-player-stories__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 767px) {
  .page-player-stories__hero-title {
    font-size: 2.2em;
  }
  .page-player-stories__hero-subtitle {
    font-size: 1.1em;
  }
  .page-player-stories__hero-section {
    padding: 60px 0;
  }
  .page-player-stories__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-player-stories__section-title {
    font-size: 1.8em;
  }
  .page-player-stories__section-description {
    font-size: 1em;
  }
  .page-player-stories__stories-grid .page-player-stories__container,
  .page-player-stories__features-grid {
    grid-template-columns: 1fr;
  }
  .page-player-stories__story-card {
    flex-direction: column;
  }
  .page-player-stories__story-image {
    height: 200px;
  }
  .page-player-stories__story-content {
    width: auto;
  }
  .page-player-stories__cta-buttons {
    flex-direction: column;
  }
  .page-player-stories__cta-content {
    padding: 30px;
  }
  .page-player-stories__cta-title {
    font-size: 1.6em;
  }
  .page-player-stories__cta-description {
    font-size: 1em;
  }
  .page-player-stories__faq-question {
    font-size: 1.1em;
  }
  .page-player-stories__hero-image-container {
    display: none;
  }
}