/* ==============================================
   PLAY THERAPY PAGE STYLES
   Mobile First Design
   Breakpoints: 768px, 1200px
   ============================================== */
.fa-level-up-alt::before {
  content: "\f3bf";
}
.fa-play-circle::before {
  content: "\f144";
}
.fa-gamepad::before {
  content: "\f11b";
}
.fa-coins::before {
  content: "\f51e";
}
.fa-hand-sparkles::before {
  content: "\e05d";
}
.fa-drum::before {
  content: "\f569";
}
.fa-palette::before {
  content: "\f53f";
}
.fa-comment-dots::before {
  content: "\f4ad";
}
.fa-candy-cane::before {
  content: "\f786";
}
/* #region Hero Section */
.hero {
  background: linear-gradient(145deg, #004d47 0%, #00847d 50%, #006d66 100%);
  color: white;
}

.play-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.play-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 203, 189, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 2px solid rgba(45, 203, 189, 0.5);
  box-shadow: 0 4px 15px rgba(45, 203, 189, 0.2);
}

@media (min-width: 768px) {
  .play-hero__tag {
    font-size: 16px;
    padding: 10px 24px;
  }
}

.play-hero__tag i {
  color: #2dcbbd;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.play-hero__title {
  color: #ffffff;
  text-shadow:
    0 4px 30px rgba(0, 0, 0, 0.4),
    0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  font-size: 2.1rem;
}

@media (min-width: 768px) {
  .play-hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  .play-hero__title {
    font-size: 3.5rem;
  }
}

.play-hero__subtitle {
  color: #fff;
  margin-bottom: 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .play-hero__subtitle {
    font-size: 1.125rem;
  }
}

.play-hero__actions {
  display: flex;
  flex-direction: column;
  width: 95%;
  gap: 12px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .play-hero__actions {
    flex-direction: row;
    width: auto;
    gap: 16px;
  }
}

/* Hero Buttons */
.button--hero-primary,
.button--hero-outline {
  gap: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .button--hero-primary,
  .button--hero-outline {
    width: auto;
  }
}

.button--hero-primary {
  background: #2dcbbd;
  color: #00423d;
  border: 2px solid #2dcbbd;
  box-shadow: 0 4px 20px rgba(45, 203, 189, 0.4);
}

.button--hero-primary:hover {
  transform: translateY(-2px);
  background: #3dd4c6;
  border-color: #3dd4c6;
  box-shadow: 0 6px 25px rgba(45, 203, 189, 0.5);
}

.button--hero-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.button--hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
}
/* #endregion */

/* #region Intro Section */
.play-intro {
  background: #f8fafa;
  text-align: center;
}

.play-intro__text {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.play-intro__text strong {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .play-intro__text {
    font-size: 1.25rem;
  }
}
/* #endregion */

/* #region Category Section */
.play-category {
  padding: 40px 0;
  background: #ffffff;
}

.play-category--alt {
  background: linear-gradient(180deg, #f0f9f8 0%, #ffffff 100%);
}

.play-category__header {
  text-align: center;
  margin-bottom: 30px;
}

.play-category__tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #00a89d 100%);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 132, 125, 0.3);
}

.play-category__tag--dual {
  background: linear-gradient(135deg, #00847d 0%, #6c63ff 100%);
}

.play-category__tag--ot {
  background: linear-gradient(135deg, #6c63ff 0%, #8b5cf6 100%);
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.play-category__tag--speech {
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

@media (min-width: 768px) {
  .play-category {
    padding: 60px 0;
  }

  .play-category__header {
    margin-bottom: 50px;
  }

  .play-category__tag {
    font-size: 1.125rem;
    padding: 14px 36px;
  }
}

@media (min-width: 1200px) {
  .play-category {
    padding: 80px 0;
  }
}
/* #endregion */

/* #region Play Card */
.play-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.play-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.play-card:last-child {
  margin-bottom: 0;
}

.play-card__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.play-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.play-card:hover .play-card__image img {
  transform: scale(1.05);
}

.play-card__content {
  padding: 24px;
}

.play-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8f5f4;
}

.play-card__title i {
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2dcbbd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.play-card__intro {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f0f9f8 0%, #e8f5f4 100%);
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
}

.play-card__section {
  margin-bottom: 16px;
}

.play-card__section:last-child {
  margin-bottom: 0;
}

.play-card__section h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #00847d;
  margin-bottom: 8px;
  font-weight: 600;
}

.play-card__section h4 i {
  font-size: 0.85rem;
  color: #2dcbbd;
}

.play-card__section p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
  padding-left: 24px;
}

/* Tablet and above */
@media (min-width: 768px) {
  .play-card {
    flex-direction: row;
    margin-bottom: 40px;
  }

  .play-card--reverse {
    flex-direction: row-reverse;
  }

  .play-card__image {
    width: 45%;
    flex-shrink: 0;
    aspect-ratio: auto;
    min-height: 300px;
  }

  .play-card__content {
    width: 55%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .play-card__title {
    font-size: 1.5rem;
  }

  .play-card__section h4 {
    font-size: 1rem;
  }

  .play-card__section p {
    font-size: 1rem;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .play-card {
    margin-bottom: 50px;
  }

  .play-card__image {
    width: 40%;
    min-height: 350px;
  }

  .play-card__content {
    width: 60%;
    padding: 40px 50px;
  }

  .play-card__title {
    font-size: 1.65rem;
  }
}
/* #endregion */

/* #region CTA Section */
.play-cta {
  background: linear-gradient(145deg, #004d47 0%, #00847d 50%, #006d66 100%);
  color: #ffffff;
  text-align: center;
}

.play-cta__content {
  max-width: 650px;
  margin: 0 auto;
}

.play-cta__title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.play-cta__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  line-height: 1.8;
}

.play-cta__text strong {
  color: #2dcbbd;
  font-weight: 700;
}

.play-cta .button--primary {
  background: #2dcbbd;
  color: #00423d;
  border: 2px solid #2dcbbd;
  box-shadow: 0 4px 20px rgba(45, 203, 189, 0.4);
}

.play-cta .button--primary:hover {
  transform: translateY(-2px);
  background: #3dd4c6;
  border-color: #3dd4c6;
  box-shadow: 0 6px 25px rgba(45, 203, 189, 0.5);
}

@media (min-width: 768px) {
  .play-cta__title {
    font-size: 2rem;
  }

  .play-cta__text {
    font-size: 1.125rem;
  }
}

@media (min-width: 1200px) {
  .play-cta__title {
    font-size: 2.25rem;
  }
}
/* #endregion */
