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

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

.page-player-community-player-stories__hero {
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for better contrast */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-player-community-player-stories__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,subtle_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 1;
}

.page-player-community-player-stories__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-player-community-player-stories__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-player-community-player-stories__hero-title .highlight {
  color: #ffc107;
}

.page-player-community-player-stories__hero-description {
  font-size: 1.25em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-player-community-player-stories__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.page-player-community-player-stories__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  color: #000;
}

.page-player-community-player-stories__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px; /* Adjust size */
  opacity: 0.15;
  z-index: 1;
}

.page-player-community-player-stories__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-player-community-player-stories__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-player-community-player-stories__story-grid {
  padding: 80px 0;
  background-color: #fff;
}

.page-player-community-player-stories__story-card {
  display: flex;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-player-community-player-stories__story-card:hover {
  transform: translateY(-8px);
}

.page-player-community-player-stories__story-card:nth-child(even) {
  flex-direction: row-reverse;
}

.page-player-community-player-stories__story-image {
  width: 40%;
  height: auto;
  object-fit: cover;
}

.page-player-community-player-stories__story-content {
  width: 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-player-community-player-stories__story-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-player-community-player-stories__story-meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

.page-player-community-player-stories__story-text {
  margin-bottom: 25px;
  color: #444;
}

.page-player-community-player-stories__quote {
  font-style: italic;
  color: #0056b3;
  border-left: 4px solid #ffc107;
  padding-left: 15px;
  margin: 20px 0;
  font-size: 1.05em;
}

.page-player-community-player-stories__read-more {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-player-community-player-stories__read-more:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-player-community-player-stories__memorable-moments {
  padding: 80px 0;
  background-color: #f0f2f5;
}

.page-player-community-player-stories__moment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-player-community-player-stories__moment-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease;
}

.page-player-community-player-stories__moment-card:hover {
  transform: translateY(-5px);
}

.page-player-community-player-stories__moment-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-player-community-player-stories__moment-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-player-community-player-stories__moment-text {
  color: #555;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-player-community-player-stories__tips {
  padding: 80px 0;
  background-color: #fff;
}

.page-player-community-player-stories__tip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-player-community-player-stories__tip-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: border-color 0.3s ease;
}

.page-player-community-player-stories__tip-card:hover {
  border-color: #007bff;
}

.page-player-community-player-stories__tip-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-player-community-player-stories__tip-text {
  color: #444;
}

.page-player-community-player-stories__share-story {
  padding: 80px 0;
  background-color: #f0f2f5;
}

.page-player-community-player-stories__story-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-player-community-player-stories__form-group {
  margin-bottom: 25px;
}

.page-player-community-player-stories__form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.page-player-community-player-stories__form-input,
.page-player-community-player-stories__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-player-community-player-stories__form-input:focus,
.page-player-community-player-stories__form-textarea:focus {
  border-color: #007bff;
  outline: none;
}

.page-player-community-player-stories__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-player-community-player-stories__submit-button {
  display: block;
  width: 100%;
  background-color: #007bff;
  color: #fff;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-player-community-player-stories__submit-button:hover {
  background-color: #0056b3;
}

.page-player-community-player-stories__join-us {
  padding: 100px 0;
  background: linear-gradient(to right, #007bff, #0056b3);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-player-community-player-stories__join-us-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-player-community-player-stories__join-us .page-player-community-player-stories__section-title {
  color: #fff;
  margin-bottom: 25px;
}

.page-player-community-player-stories__join-us .page-player-community-player-stories__section-subtitle {
  color: #e0e0e0;
  margin-bottom: 50px;
}

.page-player-community-player-stories__join-us-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-player-community-player-stories__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
}

.page-player-community-player-stories__cta-button--secondary:hover {
  background-color: #ffc107;
  color: #000;
}

.page-player-community-player-stories__join-us-image {
  position: absolute;
  bottom: -50px;
  right: -100px;
  opacity: 0.1;
  width: 600px;
  height: auto;
  z-index: 1;
  transform: rotate(10deg);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-player-community-player-stories__hero-title {
    font-size: 2.8em;
  }
  .page-player-community-player-stories__hero-description {
    font-size: 1.1em;
  }
  .page-player-community-player-stories__story-card {
    flex-direction: column;
  }
  .page-player-community-player-stories__story-card:nth-child(even) {
    flex-direction: column;
  }
  .page-player-community-player-stories__story-image,
  .page-player-community-player-stories__story-content {
    width: 100%;
  }
  .page-player-community-player-stories__story-image {
    height: 250px;
  }
  .page-player-community-player-stories__story-content {
    padding: 30px;
  }
  .page-player-community-player-stories__moment-cards {
    grid-template-columns: 1fr;
  }
  .page-player-community-player-stories__tip-cards {
    grid-template-columns: 1fr;
  }
  .page-player-community-player-stories__join-us-buttons {
    flex-direction: column;
  }
  .page-player-community-player-stories__cta-button {
    width: 80%;
    margin: 0 auto 15px auto;
  }
}

@media (max-width: 768px) {
  .page-player-community-player-stories__hero {
    padding: 80px 0 50px;
  }
  .page-player-community-player-stories__hero-title {
    font-size: 2.2em;
  }
  .page-player-community-player-stories__section-title {
    font-size: 2em;
  }
  .page-player-community-player-stories__story-content {
    padding: 20px;
  }
  .page-player-community-player-stories__story-title {
    font-size: 1.5em;
  }
  .page-player-community-player-stories__story-text {
    font-size: 0.95em;
  }
  .page-player-community-player-stories__share-story .page-player-community-player-stories__story-form {
    padding: 30px;
  }
  .page-player-community-player-stories__join-us-image {
    width: 400px;
    right: -50px;
  }
}

@media (max-width: 480px) {
  .page-player-community-player-stories__hero {
    padding: 60px 0 30px;
  }
  .page-player-community-player-stories__hero-title {
    font-size: 1.8em;
  }
  .page-player-community-player-stories__hero-description {
    font-size: 1em;
  }
  .page-player-community-player-stories__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-player-community-player-stories__section-title {
    font-size: 1.8em;
  }
  .page-player-community-player-stories__section-subtitle {
    font-size: 0.95em;
  }
  .page-player-community-player-stories__story-image {
    height: 180px;
  }
  .page-player-community-player-stories__story-title {
    font-size: 1.3em;
  }
  .page-player-community-player-stories__join-us-image {
    display: none;
  }
}