/* style/player-community-member-profiles.css */
.page-player-community-member-profiles {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A202C; /* Auxiliary dark background */
  line-height: 1.6;
}

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

.page-player-community-member-profiles__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient for hero */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-player-community-member-profiles__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-player-community-member-profiles__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-player-community-member-profiles__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-player-community-member-profiles__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  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;
}

.page-player-community-member-profiles__hero-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-player-community-member-profiles__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show partial image or full */
  right: -100px;
  opacity: 0.3;
  z-index: 1;
  max-width: 600px;
  width: 100%;
}

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

.page-player-community-member-profiles__section {
  padding: 60px 0;
  text-align: center;
}

.page-player-community-member-profiles__section:nth-of-type(even) {
  background-color: #242b38; /* Slightly lighter dark background for contrast */
}

.page-player-community-member-profiles__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-player-community-member-profiles__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-player-community-member-profiles__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 50px;
}

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

.page-player-community-member-profiles__card,
.page-player-community-member-profiles__offer-card,
.page-player-community-member-profiles__advantage-card {
  background-color: #2D3748; /* Darker card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-player-community-member-profiles__card:hover,
.page-player-community-member-profiles__offer-card:hover,
.page-player-community-member-profiles__advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-player-community-member-profiles__card-icon,
.page-player-community-member-profiles__offer-icon,
.page-player-community-member-profiles__advantage-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-player-community-member-profiles__card-title,
.page-player-community-member-profiles__offer-title,
.page-player-community-member-profiles__advantage-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-player-community-member-profiles__card-text,
.page-player-community-member-profiles__offer-text,
.page-player-community-member-profiles__advantage-text {
  color: #B0B0B0;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-player-community-member-profiles__card-button,
.page-player-community-member-profiles__offer-button,
.page-player-community-member-profiles__button,
.page-player-community-member-profiles__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-player-community-member-profiles__card-button:hover,
.page-player-community-member-profiles__offer-button:hover,
.page-player-community-member-profiles__button:hover,
.page-player-community-member-profiles__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-player-community-member-profiles__image-text-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-player-community-member-profiles__image-text-layout--reverse {
  flex-direction: row-reverse;
}

.page-player-community-member-profiles__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-player-community-member-profiles__responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-player-community-member-profiles__text-content {
  flex: 1;
}

.page-player-community-member-profiles__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-player-community-member-profiles__sub-title:first-of-type {
  margin-top: 0;
}

.page-player-community-member-profiles__text {
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-player-community-member-profiles__cta-wrapper {
  background-color: #2D3748;
  padding: 40px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-player-community-member-profiles__cta-text {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-player-community-member-profiles__faq {
  background-color: #1A202C;
}

.page-player-community-member-profiles__faq-item {
  background-color: #2D3748;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-player-community-member-profiles__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-player-community-member-profiles__faq-answer {
  color: #E0E0E0;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-player-community-member-profiles__hero-title {
    font-size: 2.8em;
  }
  .page-player-community-member-profiles__section-title {
    font-size: 2em;
  }
  .page-player-community-member-profiles__image-text-layout {
    flex-direction: column;
    text-align: center;
  }
  .page-player-community-member-profiles__image-text-layout--reverse {
    flex-direction: column;
  }
  .page-player-community-member-profiles__text-content {
    margin-top: 30px;
  }
  .page-player-community-member-profiles__hero-image-wrapper {
    position: static;
    opacity: 0.5;
    margin-top: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-player-community-member-profiles__hero {
    padding: 60px 0;
  }
  .page-player-community-member-profiles__hero-title {
    font-size: 2.2em;
  }
  .page-player-community-member-profiles__hero-subtitle {
    font-size: 1.1em;
  }
  .page-player-community-member-profiles__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-player-community-member-profiles__section {
    padding: 40px 0;
  }
  .page-player-community-member-profiles__section-title {
    font-size: 1.8em;
  }
  .page-player-community-member-profiles__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-player-community-member-profiles__grid {
    grid-template-columns: 1fr;
  }
  .page-player-community-member-profiles__card,
  .page-player-community-member-profiles__offer-card,
  .page-player-community-member-profiles__advantage-card {
    padding: 25px;
  }
  .page-player-community-member-profiles__card-icon,
  .page-player-community-member-profiles__offer-icon,
  .page-player-community-member-profiles__advantage-icon {
    width: 60px;
    height: 60px;
  }
  .page-player-community-member-profiles__card-title,
  .page-player-community-member-profiles__offer-title,
  .page-player-community-member-profiles__advantage-title {
    font-size: 1.3em;
  }
  .page-player-community-member-profiles__sub-title {
    font-size: 1.5em;
  }
  .page-player-community-member-profiles__cta-text {
    font-size: 1.2em;
  }
  .page-player-community-member-profiles__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-player-community-member-profiles__hero-title {
    font-size: 1.8em;
  }
  .page-player-community-member-profiles__hero-subtitle {
    font-size: 0.9em;
  }
  .page-player-community-member-profiles__section-title {
    font-size: 1.5em;
  }
  .page-player-community-member-profiles__cta-text {
    font-size: 1em;
  }
}