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

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

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

.page-player-community-forum__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:bancahaivuong,ocean,fish_pattern]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-player-community-forum__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.page-player-community-forum__hero-description {
  font-size: 1.25em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-player-community-forum__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-player-community-forum__btn--primary {
  background-color: #ffc107;
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-player-community-forum__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-player-community-forum__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
  margin-left: 15px;
}

.page-player-community-forum__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

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

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

.page-player-community-forum__why-join-section,
.page-player-community-forum__categories-section,
.page-player-community-forum__how-to-join-section,
.page-player-community-forum__community-guidelines-section {
  padding: 80px 0;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.page-player-community-forum__feature-item,
.page-player-community-forum__category-item,
.page-player-community-forum__step-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-player-community-forum__feature-item:hover,
.page-player-community-forum__category-item:hover,
.page-player-community-forum__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.page-player-community-forum__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.page-player-community-forum__feature-title,
.page-player-community-forum__category-title,
.page-player-community-forum__step-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-player-community-forum__feature-text,
.page-player-community-forum__category-description,
.page-player-community-forum__step-text {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 20px;
}

.page-player-community-forum__step-number {
  width: 50px;
  height: 50px;
  background-color: #ffc107;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.page-player-community-forum__text-content {
  font-size: 1.1em;
  color: #444;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.page-player-community-forum__cta-section {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.page-player-community-forum__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-player-community-forum__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-player-community-forum__cta-buttons .page-player-community-forum__btn:first-child {
  margin-left: 0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-player-community-forum__hero-title {
    font-size: 2.8em;
  }
  .page-player-community-forum__section-title {
    font-size: 2em;
  }
  .page-player-community-forum__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-player-community-forum__hero-section,
  .page-player-community-forum__why-join-section,
  .page-player-community-forum__categories-section,
  .page-player-community-forum__how-to-join-section,
  .page-player-community-forum__community-guidelines-section,
  .page-player-community-forum__cta-section {
    padding: 60px 0;
  }
  .page-player-community-forum__hero-title {
    font-size: 2.2em;
  }
  .page-player-community-forum__hero-description {
    font-size: 1.1em;
  }
  .page-player-community-forum__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-player-community-forum__feature-item,
  .page-player-community-forum__category-item,
  .page-player-community-forum__step-item {
    padding: 25px;
  }
  .page-player-community-forum__feature-title,
  .page-player-community-forum__category-title,
  .page-player-community-forum__step-title {
    font-size: 1.4em;
  }
  .page-player-community-forum__cta-title {
    font-size: 2em;
  }
  .page-player-community-forum__cta-description {
    font-size: 1.1em;
  }
  .page-player-community-forum__cta-buttons .page-player-community-forum__btn {
    display: block;
    margin: 15px auto !important;
  }
}

@media (max-width: 576px) {
  .page-player-community-forum__hero-title {
    font-size: 1.8em;
  }
  .page-player-community-forum__hero-description {
    font-size: 1em;
  }
  .page-player-community-forum__btn {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-player-community-forum__section-title {
    font-size: 1.5em;
  }
  .page-player-community-forum__feature-title,
  .page-player-community-forum__category-title,
  .page-player-community-forum__step-title {
    font-size: 1.2em;
  }
  .page-player-community-forum__cta-title {
    font-size: 1.6em;
  }
}