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

.page-live-cockfighting-gameplay-player-roles__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-live-cockfighting-gameplay-player-roles__hero-section {
  background: linear-gradient(135deg, #0A2342, #1a3a60);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-live-cockfighting-gameplay-player-roles__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
}

.page-live-cockfighting-gameplay-player-roles__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-live-cockfighting-gameplay-player-roles__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-live-cockfighting-gameplay-player-roles__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1em;
  cursor: pointer;
  border: none;
}

.page-live-cockfighting-gameplay-player-roles__btn--primary {
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-live-cockfighting-gameplay-player-roles__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-live-cockfighting-gameplay-player-roles__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-live-cockfighting-gameplay-player-roles__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-live-cockfighting-gameplay-player-roles__btn--tertiary {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #0A2342;
}

.page-live-cockfighting-gameplay-player-roles__btn--tertiary:hover {
  background-color: #1a3a60;
  border-color: #1a3a60;
}

.page-live-cockfighting-gameplay-player-roles__btn--inline {
  background-color: #0A2342;
  color: #FFD700;
  border: 1px solid #0A2342;
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-live-cockfighting-gameplay-player-roles__btn--inline:hover {
  background-color: #1a3a60;
  border-color: #1a3a60;
}

.page-live-cockfighting-gameplay-player-roles__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-live-cockfighting-gameplay-player-roles__section:nth-of-type(even) {
  background-color: #f0f2f5;
}

.page-live-cockfighting-gameplay-player-roles__section-title {
  font-size: 2em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-live-cockfighting-gameplay-player-roles__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-live-cockfighting-gameplay-player-roles__introduction p,
.page-live-cockfighting-gameplay-player-roles__importance p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-live-cockfighting-gameplay-player-roles__role-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  position: relative;
}

.page-live-cockfighting-gameplay-player-roles__role-card:last-child {
  margin-bottom: 0;
}

.page-live-cockfighting-gameplay-player-roles__role-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-live-cockfighting-gameplay-player-roles__role-card p {
  color: #444;
  font-size: 1.05em;
}

.page-live-cockfighting-gameplay-player-roles__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-live-cockfighting-gameplay-player-roles__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-live-cockfighting-gameplay-player-roles__cta-bottom {
  background: #0A2342;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-live-cockfighting-gameplay-player-roles__cta-bottom .page-live-cockfighting-gameplay-player-roles__section-title {
  color: #FFD700;
}

.page-live-cockfighting-gameplay-player-roles__cta-bottom .page-live-cockfighting-gameplay-player-roles__section-title::after {
  background-color: #FFD700;
}

.page-live-cockfighting-gameplay-player-roles__cta-bottom p {
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-live-cockfighting-gameplay-player-roles__main-title {
    font-size: 2em;
  }

  .page-live-cockfighting-gameplay-player-roles__hero-description,
  .page-live-cockfighting-gameplay-player-roles__cta-bottom p {
    font-size: 1em;
  }

  .page-live-cockfighting-gameplay-player-roles__section-title {
    font-size: 1.7em;
  }

  .page-live-cockfighting-gameplay-player-roles__role-title {
    font-size: 1.4em;
  }

  .page-live-cockfighting-gameplay-player-roles__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-live-cockfighting-gameplay-player-roles__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-live-cockfighting-gameplay-player-roles__hero-section {
    padding: 80px 0 50px;
  }

  .page-live-cockfighting-gameplay-player-roles__main-title {
    font-size: 1.8em;
  }

  .page-live-cockfighting-gameplay-player-roles__section {
    padding: 40px 0;
  }

  .page-live-cockfighting-gameplay-player-roles__role-card {
    padding: 20px;
  }
}