.playforge-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.playforge-hero-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9 0%, #f7fafc 100%);
}

.playforge-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-hero-content {
  max-width: 620px;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.playforge-hero-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
}

.playforge-hero-title i {
  color: var(--accent-color);
  font-size: 2.2rem;
}

.playforge-hero-text {
  margin-bottom: 25px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
}

.playforge-hero-text i {
  margin-right: 8px;
  color: var(--accent-color);
}

.playforge-hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  margin-left: 10px;
}

.playforge-hero-highlights li {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 32px;
  color: var(--main-text-color);
  font-size: 1.05rem;
}

.playforge-hero-highlights li i {
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.playforge-hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.playforge-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  border-radius: 30px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.playforge-btn-primary {
  box-shadow: 0 4px 15px rgba(0, 129, 57, 0.3);
  color: white;
  background: var(--accent-color);
}

.playforge-btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 129, 57, 0.4);
  background: #00964a;
  transform: translateY(-3px);
}

.playforge-btn-secondary {
  border: 1px solid rgba(0, 129, 57, 0.2);
  color: var(--accent-color);
  background: rgba(0, 129, 57, 0.1);
}

.playforge-btn-secondary:hover {
  background: rgba(0, 129, 57, 0.15);
  transform: translateY(-3px);
}

.playforge-hero-image {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatImage 5s ease-in-out infinite, fadeInRight 1s ease-out;
}

@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.playforge-community-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: #fff;
}

.playforge-community-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-community-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-community-title i {
  color: var(--accent-color);
}

.playforge-community-text {
  max-width: 800px;
  margin-bottom: 50px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-community-text i {
  margin-right: 8px;
  color: var(--accent-color);
}

.playforge-community-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  width: 100%;
  margin-bottom: 40px;
}

.playforge-community-info {
  flex: 1;
}

.playforge-community-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.playforge-community-benefits li {
  position: relative;
  padding-left: 35px;
  color: var(--main-text-color);
  font-size: 1.05rem;
  line-height: 1.5;
}

.playforge-community-benefits li i {
  position: absolute;
  top: 3px;
  left: 0;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.playforge-community-image-container {
  position: relative;
  flex: 1;
}

.playforge-community-image {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.playforge-community-badge {
  position: absolute;
  right: 30px;
  bottom: -15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  padding: 12px 20px;
  box-shadow: 0 5px 15px rgba(0, 129, 57, 0.3);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--accent-color);
}

.playforge-community-badge i {
  color: #ffd700;
}

.playforge-community-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  border-radius: 30px;
  padding: 14px 30px;
  box-shadow: 0 4px 15px rgba(0, 129, 57, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.playforge-community-btn:hover {
  box-shadow: 0 6px 20px rgba(0, 129, 57, 0.4);
  background: #00964a;
  transform: translateY(-3px);
}


.playforge-games-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f5e9 100%);
}

.playforge-games-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-games-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-games-title i {
  color: var(--accent-color);
}

.playforge-games-text {
  max-width: 800px;
  margin-bottom: 50px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-games-text i {
  margin-right: 8px;
  color: var(--accent-color);
}

.playforge-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
  margin-bottom: 40px;
}

.playforge-games-item {
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.playforge-games-item:hover {
  box-shadow: 0 10px 25px rgba(0, 129, 57, 0.15);
  transform: translateY(-10px);
}

.playforge-games-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.playforge-games-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px 5px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.playforge-games-item h3 i {
  color: var(--accent-color);
}

.playforge-games-item p {
  padding: 0 20px 20px;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.playforge-games-item p i {
  margin-left: 5px;
  color: var(--accent-color);
}

.playforge-games-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  border-radius: 30px;
  padding: 14px 30px;
  box-shadow: 0 4px 15px rgba(0, 129, 57, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.playforge-games-btn:hover {
  box-shadow: 0 6px 20px rgba(0, 129, 57, 0.4);
  background: #00964a;
  transform: translateY(-3px);
}


.playforge-festival-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: #fff;
}

.playforge-festival-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-festival-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-festival-title i {
  color: #ff6b6b;
}

.playforge-festival-text {
  max-width: 800px;
  margin-bottom: 50px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-festival-text i {
  margin-right: 8px;
  color: var(--accent-color);
}

.playforge-festival-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  width: 100%;
  margin-bottom: 40px;
}

.playforge-festival-highlights {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: rgba(255, 107, 107, 0.05);
}

.playforge-festival-highlights li {
  position: relative;
  padding-left: 35px;
  color: var(--main-text-color);
  font-size: 1.05rem;
  line-height: 1.5;
}

.playforge-festival-highlights li i {
  position: absolute;
  top: 3px;
  left: 0;
  color: #ff6b6b;
  font-size: 1.2rem;
}

.playforge-festival-image {
  flex: 1;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.playforge-festival-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  border-radius: 30px;
  padding: 14px 30px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  background: #ff6b6b;
  transition: all 0.3s ease;
}

.playforge-festival-btn:hover {
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  background: #ff5252;
  transform: translateY(-3px);
}


.playforge-learning-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(135deg, #e8f5e9 0%, #f7fafc 100%);
}

.playforge-learning-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-learning-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-learning-title i {
  color: #4a6bdf;
}

.playforge-learning-text {
  max-width: 800px;
  margin-bottom: 50px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-learning-text i {
  margin-right: 8px;
  color: #4a6bdf;
}

.playforge-learning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
  margin-bottom: 40px;
}

.playforge-learning-item {
  border-radius: 15px;
  border-top: 4px solid #4a6bdf;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.playforge-learning-item:hover {
  box-shadow: 0 10px 25px rgba(74, 107, 223, 0.15);
  transform: translateY(-10px);
}

.playforge-learning-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.playforge-learning-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px 5px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.playforge-learning-item h3 i {
  color: #4a6bdf;
}

.playforge-learning-item p {
  padding: 0 20px 20px;
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.playforge-learning-item p i {
  margin-left: 5px;
  color: #4a6bdf;
}

.playforge-learning-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  border-radius: 30px;
  padding: 14px 30px;
  box-shadow: 0 4px 15px rgba(74, 107, 223, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  background: #4a6bdf;
  transition: all 0.3s ease;
}

.playforge-learning-btn:hover {
  box-shadow: 0 6px 20px rgba(74, 107, 223, 0.4);
  background: #3a5bd0;
  transform: translateY(-3px);
}


.playforge-mobile-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  overflow: hidden;
  background: #fff;
}

.playforge-mobile-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-mobile-image {
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: floatMobile 5s ease-in-out infinite;
}

@keyframes floatMobile {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px) translateX(10px);
  }
}

.playforge-mobile-content {
  max-width: 650px;
}

.playforge-mobile-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
}

.playforge-mobile-title i {
  color: #6c5ce7;
}

.playforge-mobile-text {
  margin-bottom: 30px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
}

.playforge-mobile-text i {
  margin-right: 8px;
  color: #6c5ce7;
}

.playforge-mobile-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.playforge-mobile-features li {
  position: relative;
  padding-left: 35px;
  color: var(--main-text-color);
  font-size: 1.05rem;
  line-height: 1.5;
}

.playforge-mobile-features li i {
  position: absolute;
  top: 3px;
  left: 0;
  color: #6c5ce7;
  font-size: 1.2rem;
}

.playforge-mobile-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  padding: 14px 30px;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  background: #6c5ce7;
  transition: all 0.3s ease;
}

.playforge-mobile-btn:hover {
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
  background: #5b4bd1;
  transform: translateY(-3px);
}


.playforge-onboarding-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f5e9 100%);
}

.playforge-onboarding-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-onboarding-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-onboarding-title i {
  color: #f0932b;
}

.playforge-onboarding-text {
  max-width: 800px;
  margin-bottom: 50px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-onboarding-text i {
  margin-right: 8px;
  color: #f0932b;
}

.playforge-onboarding-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
  margin-bottom: 40px;
}

.playforge-onboarding-steps::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 70px;
  z-index: 1;
  width: calc(100% - 140px);
  height: 2px;
  background: rgba(240, 147, 43, 0.3);
}

.playforge-onboarding-step {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.playforge-onboarding-step:hover {
  box-shadow: 0 10px 25px rgba(240, 147, 43, 0.15);
  transform: translateY(-10px);
}

.playforge-step-number {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  background: #f0932b;
}

.playforge-step-number::before {
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  border: 2px solid rgba(240, 147, 43, 0.3);
  border-radius: 50%;
}

.playforge-onboarding-step i {
  margin-bottom: 15px;
  color: #f0932b;
  font-size: 2rem;
}

.playforge-onboarding-step h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.playforge-onboarding-step p {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.playforge-onboarding-step p i {
  margin-bottom: 0;
  margin-left: 5px;
  font-size: 0.9rem;
}

.playforge-onboarding-image {
  max-width: 500px;
  width: 100%;
  margin: 40px auto 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.playforge-regional-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}

.playforge-regional-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-regional-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-regional-title i {
  color: #e84393;
}

.playforge-regional-text {
  max-width: 800px;
  margin-bottom: 50px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-regional-text i {
  margin-right: 8px;
  color: #e84393;
}

.playforge-regional-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  width: 100%;
  margin-bottom: 40px;
}

.playforge-regional-highlights {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: rgba(232, 67, 147, 0.05);
}

.playforge-regional-highlights li {
  position: relative;
  padding-left: 35px;
  color: var(--main-text-color);
  font-size: 1.05rem;
  line-height: 1.5;
}

.playforge-regional-highlights li i {
  position: absolute;
  top: 3px;
  left: 0;
  color: #e84393;
  font-size: 1.2rem;
}

.playforge-regional-image {
  flex: 1;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.playforge-regional-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  border-radius: 30px;
  padding: 14px 30px;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  background: #e84393;
  transition: all 0.3s ease;
}

.playforge-regional-btn:hover {
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
  background: #d13680;
  transform: translateY(-3px);
}


.playforge-stories-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: #fff;
}

.playforge-stories-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-stories-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-stories-title i {
  color: var(--accent-color);
}

.playforge-stories-text {
  max-width: 800px;
  margin-bottom: 50px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-stories-text i {
  margin-right: 8px;
  color: var(--accent-color);
}

.playforge-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  margin-bottom: 40px;
}

.playforge-stories-item {
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: #f7fafc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.playforge-stories-item:hover {
  box-shadow: 0 10px 25px rgba(0, 129, 57, 0.15);
  transform: translateY(-10px);
}

.playforge-stories-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.playforge-stories-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.playforge-stories-info {
  flex: 1;
}

.playforge-stories-name {
  margin-bottom: 5px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.playforge-stories-location {
  display: block;
  margin-bottom: 10px;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

.playforge-stories-info p {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.playforge-stories-info p i {
  margin-right: 5px;
  color: var(--accent-color);
}

.playforge-stories-info p i:last-child {
  margin-right: 0;
  margin-left: 5px;
  color: #f0932b;
}

.playforge-stories-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  border-radius: 30px;
  padding: 14px 30px;
  box-shadow: 0 4px 15px rgba(0, 129, 57, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.playforge-stories-btn:hover {
  box-shadow: 0 6px 20px rgba(0, 129, 57, 0.4);
  background: #00964a;
  transform: translateY(-3px);
}


.playforge-why-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(135deg, #e8f5e9 0%, #f7fafc 100%);
}

.playforge-why-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-why-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-why-title i {
  color: #ffa502;
}

.playforge-why-text {
  max-width: 800px;
  margin-bottom: 50px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-why-text i {
  margin-right: 8px;
  color: #ffa502;
}

.playforge-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
}

.playforge-why-item {
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.playforge-why-item:hover {
  box-shadow: 0 10px 25px rgba(255, 165, 2, 0.15);
  transform: translateY(-10px);
}

.playforge-why-item i {
  margin-bottom: 20px;
  color: #ffa502;
  font-size: 2.5rem;
}

.playforge-why-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.playforge-why-item p {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}


@media (max-width: 1024px) {
  .playforge-hero-title {
    font-size: 2.4rem;
  }

  .playforge-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .playforge-festival-content,
  .playforge-mobile-container {
    flex-direction: column;
    gap: 40px;
  }

  .playforge-learning-grid,
  .playforge-onboarding-steps,
  .playforge-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .playforge-onboarding-steps::before {
    display: none;
  }
}

@media (max-width: 840px) {
  .playforge-hero-container {
    flex-direction: column;
    gap: 40px;
  }

  .playforge-hero-content {
    max-width: 100%;
  }

  .playforge-community-content {
    flex-direction: column;
  }

  .playforge-community-image {
    max-width: 100%;
  }

  .playforge-regional-content {
    flex-direction: column;
  }

  .playforge-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .playforge-hero-section {
    padding: 60px 0;
  }

  .playforge-hero-title {
    font-size: 2rem;
  }

  .playforge-hero-actions {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .playforge-hero-btn {
    width: 100%;
  }

  .playforge-community-title,
  .playforge-games-title {
    font-size: 2rem;
  }

  .playforge-games-grid {
    grid-template-columns: 1fr;
  }

  .playforge-community-badge {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: center;
    margin-top: 20px;
  }

  .playforge-festival-section,
  .playforge-learning-section,
  .playforge-mobile-section,
  .playforge-onboarding-section,
  .playforge-regional-section,
  .playforge-stories-section,
  .playforge-why-section {
    padding: 60px 0;
  }

  .playforge-festival-title,
  .playforge-learning-title,
  .playforge-mobile-title,
  .playforge-onboarding-title,
  .playforge-regional-title,
  .playforge-stories-title,
  .playforge-why-title {
    font-size: 2rem;
  }

  .playforge-learning-grid,
  .playforge-onboarding-steps,
  .playforge-stories-grid,
  .playforge-why-grid {
    grid-template-columns: 1fr;
  }

  .playforge-festival-btn,
  .playforge-learning-btn,
  .playforge-mobile-btn,
  .playforge-regional-btn,
  .playforge-stories-btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 425px) {
  [class*="-title"] {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}