.page-player-community-feedback-channel {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark backgrounds */
  background-color: #000080; /* Dark blue background */
}

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

.page-player-community-feedback-channel__hero {
  background: linear-gradient(135deg, #000080 0%, #000040 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-player-community-feedback-channel__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}

.page-player-community-feedback-channel__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-player-community-feedback-channel__hero .page-player-community-feedback-channel__container {
  position: relative;
  z-index: 1;
}

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

.page-player-community-feedback-channel__subtitle {
  font-size: 1.3em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-player-community-feedback-channel__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text on gold */
}

.page-player-community-feedback-channel__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-player-community-feedback-channel__btn--secondary {
  background-color: #000080; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-player-community-feedback-channel__btn--secondary:hover {
  background-color: #000066;
  transform: translateY(-2px);
}

.page-player-community-feedback-channel__section {
  padding: 60px 0;
  text-align: center;
  background-color: #000080;
}

.page-player-community-feedback-channel__section:nth-of-type(even) {
  background-color: #0a0a90; /* Slightly lighter dark blue for alternating sections */
}

.page-player-community-feedback-channel__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-player-community-feedback-channel__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-feedback-channel__section p {
  font-size: 1.1em;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

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

.page-player-community-feedback-channel__grid-item {
  background-color: #1a1a9a; /* Darker blue for card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-player-community-feedback-channel__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-player-community-feedback-channel__grid-item-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-player-community-feedback-channel__grid-item p {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 0;
}

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

.page-player-community-feedback-channel__channel-item {
  background-color: #1a1a9a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-player-community-feedback-channel__channel-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-player-community-feedback-channel__channel-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-player-community-feedback-channel__channel-item p {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-player-community-feedback-channel__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-player-community-feedback-channel__list li {
  background-color: #1a1a9a;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-player-community-feedback-channel__list-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-player-community-feedback-channel__list li p {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 0;
}

.page-player-community-feedback-channel__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-player-community-feedback-channel__step-item {
  background-color: #1a1a9a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
}

.page-player-community-feedback-channel__step-number {
  background-color: #FFD700;
  color: #000080;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-player-community-feedback-channel__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-player-community-feedback-channel__step-item p {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 0;
}

.page-player-community-feedback-channel__faq-item {
  background-color: #1a1a9a;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-player-community-feedback-channel__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-player-community-feedback-channel__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
}

.page-player-community-feedback-channel__faq-item.active .page-player-community-feedback-channel__faq-question::after {
  content: '-';
}

.page-player-community-feedback-channel__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 0;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px solid #000066;
  margin-top: 10px;
}

.page-player-community-feedback-channel__faq-item.active .page-player-community-feedback-channel__faq-answer {
  display: block;
}

.page-player-community-feedback-channel__cta {
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient background */
  padding: 80px 0;
  text-align: center;
  color: #000080; /* Dark blue text on gold background */
  position: relative;
  overflow: hidden;
}

.page-player-community-feedback-channel__cta-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}

.page-player-community-feedback-channel__cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-player-community-feedback-channel__cta .page-player-community-feedback-channel__container {
  position: relative;
  z-index: 1;
}

.page-player-community-feedback-channel__cta-title {
  font-size: 2.8em;
  color: #000080; /* Dark blue title */
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-player-community-feedback-channel__cta-text {
  font-size: 1.2em;
  color: #333333; /* Darker text for readability */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-player-community-feedback-channel__cta .page-player-community-feedback-channel__btn--primary {
  background-color: #000080; /* Dark blue button on gold CTA */
  color: #FFD700; /* Gold text */
  border: 2px solid #000080;
}

.page-player-community-feedback-channel__cta .page-player-community-feedback-channel__btn--primary:hover {
  background-color: #000066;
  color: #FFD700;
}

.page-player-community-feedback-channel__cta .page-player-community-feedback-channel__btn--secondary {
  background-color: transparent;
  color: #000080;
  border: 2px solid #000080;
}

.page-player-community-feedback-channel__cta .page-player-community-feedback-channel__btn--secondary:hover {
  background-color: rgba(0, 0, 128, 0.1);
  color: #000066;
}

.page-player-community-feedback-channel__copyright {
  background-color: #000066;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9em;
  color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-player-community-feedback-channel__title {
    font-size: 2.5em;
  }
  .page-player-community-feedback-channel__subtitle {
    font-size: 1.1em;
  }
  .page-player-community-feedback-channel__section-title {
    font-size: 2em;
  }
  .page-player-community-feedback-channel__grid, 
  .page-player-community-feedback-channel__channels-grid, 
  .page-player-community-feedback-channel__process-steps {
    grid-template-columns: 1fr;
  }
  .page-player-community-feedback-channel__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-player-community-feedback-channel__cta-title {
    font-size: 2em;
  }
  .page-player-community-feedback-channel__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-player-community-feedback-channel__title {
    font-size: 2em;
  }
  .page-player-community-feedback-channel__subtitle {
    font-size: 1em;
  }
  .page-player-community-feedback-channel__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-player-community-feedback-channel__section-title {
    font-size: 1.8em;
  }
  .page-player-community-feedback-channel__grid-item-title,
  .page-player-community-feedback-channel__channel-title,
  .page-player-community-feedback-channel__list-title,
  .page-player-community-feedback-channel__step-title,
  .page-player-community-feedback-channel__faq-question {
    font-size: 1.3em;
  }
  .page-player-community-feedback-channel__cta-title {
    font-size: 1.8em;
  }
}