/* style/player-stories-success-shares.css */
.page-player-stories-success-shares {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-player-stories-success-shares__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.page-player-stories-success-shares__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-player-stories-success-shares__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-player-stories-success-shares__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-player-stories-success-shares__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  overflow: hidden;
}

.page-player-stories-success-shares__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
  transform: scale(1.1);
}

.page-player-stories-success-shares__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-player-stories-success-shares__btn--primary {
  background-color: #ffc107;
  color: #007bff;
  margin-right: 15px;
}

.page-player-stories-success-shares__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-player-stories-success-shares__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-player-stories-success-shares__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-player-stories-success-shares__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-player-stories-success-shares__section:nth-of-type(even) {
  background-color: #f0f8ff;
}

.page-player-stories-success-shares__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-player-stories-success-shares__section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  border-radius: 2px;
}

.page-player-stories-success-shares__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

.page-player-stories-success-shares__paragraph a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-player-stories-success-shares__paragraph a:hover {
  text-decoration: underline;
}

.page-player-stories-success-shares__story-card {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-player-stories-success-shares__story-card:nth-child(even) {
  flex-direction: row-reverse;
}

.page-player-stories-success-shares__story-image-wrapper {
  flex: 1;
  min-width: 300px;
  height: 350px;
}

.page-player-stories-success-shares__story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-player-stories-success-shares__story-content {
  flex: 2;
  padding: 30px;
}

.page-player-stories-success-shares__story-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-player-stories-success-shares__feature-item {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-player-stories-success-shares__feature-item:hover {
  transform: translateY(-5px);
}

.page-player-stories-success-shares__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-player-stories-success-shares__cta-register {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.page-player-stories-success-shares__cta-content {
  z-index: 1;
  position: relative;
  max-width: 900px;
}

.page-player-stories-success-shares__cta-register .page-player-stories-success-shares__section-title {
  color: #fff;
}

.page-player-stories-success-shares__cta-register .page-player-stories-success-shares__section-title::after {
  background-color: #007bff;
}

.page-player-stories-success-shares__cta-register .page-player-stories-success-shares__paragraph {
  color: #eee;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-player-stories-success-shares__cta-register .page-player-stories-success-shares__btn--primary {
  background-color: #fff;
  color: #007bff;
  margin-bottom: 15px;
}

.page-player-stories-success-shares__cta-register .page-player-stories-success-shares__btn--primary:hover {
  background-color: #f0f0f0;
}

.page-player-stories-success-shares__cta-register .page-player-stories-success-shares__btn--secondary {
  border-color: #ffc107;
  color: #ffc107;
  margin-left: 15px;
}

.page-player-stories-success-shares__cta-register .page-player-stories-success-shares__btn--secondary:hover {
  background-color: rgba(255, 193, 7, 0.2);
}

.page-player-stories-success-shares__cta-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: auto;
  opacity: 0.2;
  transform: rotate(15deg) translateX(20px);
  z-index: 0;
}

.page-player-stories-success-shares__list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-player-stories-success-shares__list-item {
  background-color: #f0f8ff;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-player-stories-success-shares__list-item strong {
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-player-stories-success-shares__hero-title {
    font-size: 2.5em;
  }
  .page-player-stories-success-shares__hero-description {
    font-size: 1.1em;
  }
  .page-player-stories-success-shares__section-title {
    font-size: 2em;
  }
  .page-player-stories-success-shares__story-card {
    flex-direction: column;
  }
  .page-player-stories-success-shares__story-card:nth-child(even) {
    flex-direction: column;
  }
  .page-player-stories-success-shares__story-image-wrapper {
    width: 100%;
    height: 250px;
  }
  .page-player-stories-success-shares__story-content {
    padding: 20px;
  }
  .page-player-stories-success-shares__features-grid {
    grid-template-columns: 1fr;
  }
  .page-player-stories-success-shares__btn {
    display: block;
    margin: 10px auto;
  }
  .page-player-stories-success-shares__cta-register .page-player-stories-success-shares__btn--secondary {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .page-player-stories-success-shares__hero {
    padding: 60px 0;
    min-height: 300px;
  }
  .page-player-stories-success-shares__hero-title {
    font-size: 2em;
  }
  .page-player-stories-success-shares__hero-description {
    font-size: 1em;
  }
  .page-player-stories-success-shares__section {
    padding: 40px 0;
  }
  .page-player-stories-success-shares__section-title {
    font-size: 1.8em;
  }
  .page-player-stories-success-shares__paragraph {
    font-size: 0.95em;
  }
  .page-player-stories-success-shares__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-player-stories-success-shares__story-image-wrapper {
    height: 200px;
  }
  .page-player-stories-success-shares__cta-image {
    width: 150px;
  }
}

.page-player-stories-success-shares a {
    color: #007bff;
}

.page-player-stories-success-shares a:hover {
    color: #0056b3;
}