﻿.playforge-regional-assist-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9f1 0%, #f7fafc 100%);
}

.playforge-regional-assist-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-regional-assist-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-regional-assist-title i {
  color: #4a6bdf;
}

.playforge-regional-assist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
}

.playforge-regional-assist-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  border-bottom: 3px solid transparent;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-regional-assist-item:hover {
  border-bottom-color: #4a6bdf;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-regional-assist-item i {
  margin-bottom: 20px;
  color: #4a6bdf;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.playforge-regional-assist-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-regional-assist-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-regional-assist-item:hover h3 {
  color: #4a6bdf;
}

.playforge-regional-assist-item p {
  color: var(--secondary-text-color);
  font-size: 1rem;
}


.playforge-system-status-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-system-status-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-system-status-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-system-status-title i {
  color: #ffa502;
}

.playforge-system-status-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  text-align: center;
}

.playforge-system-status-text i {
  color: #ffa502;
}

.playforge-system-status-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  width: 100%;
}

.playforge-system-status-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-system-status-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffa502;
  transition: transform 0.4s ease;
  transform: scaleX(0);
}

.playforge-system-status-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-system-status-item:hover::before {
  transform: scaleX(1);
}

.playforge-system-status-item i {
  margin-bottom: 15px;
  color: #ffa502;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.playforge-system-status-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-system-status-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-system-status-item:hover h3 {
  color: #ffa502;
}

.playforge-status-active {
  display: inline-block;
  border-radius: 20px;
  padding: 6px 12px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(0, 129, 57, 0.1);
  transition: all 0.3s ease;
}

.playforge-system-status-item:hover .playforge-status-active {
  background: rgba(0, 129, 57, 0.2);
  transform: scale(1.05);
}


.playforge-inclusive-features-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f5e9 100%);
}

.playforge-inclusive-features-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-inclusive-features-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-inclusive-features-title i {
  color: #e84393;
}

.playforge-inclusive-features-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.playforge-inclusive-features-block {
  flex: 1;
}

.playforge-inclusive-features-block p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.playforge-inclusive-features-block p i {
  margin-top: 3px;
  color: #e84393;
  font-size: 1.1rem;
}

.playforge-inclusive-features-block ul {
  margin-bottom: 30px;
  padding-left: 0;
}

.playforge-inclusive-features-block li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.5;
}

.playforge-inclusive-features-block li i {
  margin-top: 3px;
  color: #e84393;
  font-size: 1.1rem;
}

.playforge-inclusive-features-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.playforge-inclusive-features-image:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(1.03) rotate(-2deg);
}

.playforge-inclusive-features-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  border-radius: 30px;
  padding: 15px 30px;
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  background: #e84393;
  transition: all 0.3s ease;
}

.playforge-inclusive-features-btn:hover {
  box-shadow: 0 10px 25px rgba(232, 67, 147, 0.4);
  background: #d33683;
  transform: translateY(-5px);
}


@media (max-width: 1024px) {

  .playforge-welcome-support-title,
  .playforge-instant-help-title,
  .playforge-faq-title,
  .playforge-contact-channels-title,
  .playforge-tech-assist-title,
  .playforge-creator-resources-title,
  .playforge-community-engage-title,
  .playforge-regional-assist-title,
  .playforge-system-status-title,
  .playforge-inclusive-features-title {
    font-size: 2.2rem;
  }

  .playforge-welcome-support-inner,
  .playforge-inclusive-features-content {
    flex-direction: column;
  }

  .playforge-welcome-support-image,
  .playforge-contact-channels-image,
  .playforge-inclusive-features-image {
    order: -1;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .playforge-system-status-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .playforge-contact-channels-content {
    flex-direction: column;
    padding: 30px;
  }
}

@media (max-width: 768px) {

  .playforge-welcome-support-section,
  .playforge-instant-help-section,
  .playforge-faq-section,
  .playforge-contact-channels-section,
  .playforge-tech-assist-section,
  .playforge-creator-resources-section,
  .playforge-community-engage-section,
  .playforge-regional-assist-section,
  .playforge-system-status-section,
  .playforge-inclusive-features-section {
    padding: 60px 0;
  }

  .playforge-welcome-support-title,
  .playforge-instant-help-title,
  .playforge-faq-title,
  .playforge-contact-channels-title,
  .playforge-tech-assist-title,
  .playforge-creator-resources-title,
  .playforge-community-engage-title,
  .playforge-regional-assist-title,
  .playforge-system-status-title,
  .playforge-inclusive-features-title {
    font-size: 2rem;
  }

  .playforge-welcome-support-text,
  .playforge-welcome-support-features li,
  .playforge-community-engage-text,
  .playforge-system-status-text,
  .playforge-inclusive-features-block p,
  .playforge-inclusive-features-block li {
    font-size: 1rem;
  }

  .playforge-regional-assist-grid,
  .playforge-system-status-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .playforge-welcome-support-section,
  .playforge-instant-help-section,
  .playforge-faq-section,
  .playforge-contact-channels-section,
  .playforge-tech-assist-section,
  .playforge-creator-resources-section,
  .playforge-community-engage-section,
  .playforge-regional-assist-section,
  .playforge-system-status-section,
  .playforge-inclusive-features-section {
    padding: 50px 0;
  }

  .playforge-welcome-support-title,
  .playforge-instant-help-title,
  .playforge-faq-title,
  .playforge-contact-channels-title,
  .playforge-tech-assist-title,
  .playforge-creator-resources-title,
  .playforge-community-engage-title,
  .playforge-regional-assist-title,
  .playforge-system-status-title,
  .playforge-inclusive-features-title {
    font-size: 1.8rem;
  }

  .playforge-regional-assist-grid,
  .playforge-system-status-grid {
    grid-template-columns: 1fr;
  }

  .playforge-welcome-support-btn,
  .playforge-community-engage-btn,
  .playforge-inclusive-features-btn {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .playforge-contact-channels-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {

  .playforge-welcome-support-title,
  .playforge-instant-help-title,
  .playforge-faq-title,
  .playforge-contact-channels-title,
  .playforge-tech-assist-title,
  .playforge-creator-resources-title,
  .playforge-community-engage-title,
  .playforge-regional-assist-title,
  .playforge-system-status-title,
  .playforge-inclusive-features-title {
    font-size: 1.6rem;
  }

  .playforge-welcome-support-text,
  .playforge-welcome-support-features li,
  .playforge-contact-channels-list li,
  .playforge-inclusive-features-block li {
    font-size: 0.95rem;
  }

  .playforge-tech-assist-btn {
    width: 100%;
  }
}


.playforge-support-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}


.playforge-welcome-support-section {
  position: relative;
  width: 100%;
  padding: 70px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9f1 0%, #f7fafc 100%);
}

.playforge-welcome-support-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-welcome-support-title {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 90%;
  margin-bottom: 25px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}

.playforge-welcome-support-title i {
  color: #6c5ce7;
  font-size: 2.2rem;
}

.playforge-welcome-support-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 90%;
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1.1rem;
  line-height: 1.5;
}

.playforge-welcome-support-text i {
  margin-top: 3px;
  color: #6c5ce7;
  font-size: 1.1rem;
}

.playforge-welcome-support-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  margin-top: 20px;
}

.playforge-welcome-support-block {
  flex: 1;
}

.playforge-welcome-support-features {
  margin-bottom: 30px;
  padding-left: 0;
}

.playforge-welcome-support-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.5;
}

.playforge-welcome-support-features li i {
  margin-top: 3px;
  color: #6c5ce7;
  font-size: 1.1rem;
}

.playforge-welcome-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  padding: 15px 30px;
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  background: #6c5ce7;
  transition: all 0.3s ease;
}

.playforge-welcome-support-btn:hover {
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4);
  background: #5549d0;
  transform: translateY(-5px);
}

.playforge-welcome-support-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.playforge-welcome-support-image:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(1.03) translateY(-5px);
}


.playforge-instant-help-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-instant-help-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-instant-help-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-instant-help-title i {
  color: #ff7d3e;
}

.playforge-instant-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
  width: 100%;
}

.playforge-instant-help-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-instant-help-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ff7d3e;
  transition: transform 0.4s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.playforge-instant-help-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-instant-help-item:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.playforge-instant-help-item i {
  margin-bottom: 20px;
  color: #ff7d3e;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.playforge-instant-help-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-instant-help-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-instant-help-item:hover h3 {
  color: #ff7d3e;
}

.playforge-instant-help-item p {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.playforge-instant-help-link {
  position: relative;
  color: #ff7d3e;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.playforge-instant-help-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff7d3e;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.playforge-instant-help-link:hover {
  color: #e56b2e;
}

.playforge-instant-help-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


.playforge-faq-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f5e9 100%);
}

.playforge-faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-faq-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-faq-title i {
  color: #e84393;
}

.playforge-faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  width: 100%;
}

@media (max-width: 425px) {
  .playforge-faq-list {
    grid-template-columns: 1fr;
  }
}

.playforge-faq-item {
  position: relative;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-faq-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e84393, transparent);
  transition: transform 0.6s ease;
  transform: translateX(-100%);
}

.playforge-faq-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-faq-item:hover::after {
  transform: translateX(0);
}

.playforge-faq-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.playforge-faq-item:hover h3 {
  color: #e84393;
}

.playforge-faq-item h3 i {
  color: #e84393;
  font-size: 1.2rem;
}

.playforge-faq-item p {
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.5;
}


.playforge-contact-channels-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-contact-channels-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-contact-channels-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-contact-channels-title i {
  color: var(--accent-color);
}

.playforge-contact-channels-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: white;
}

.playforge-contact-channels-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent-color);
}

.playforge-contact-channels-list {
  flex: 1;
  padding-left: 0;
}

.playforge-contact-channels-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1.05rem;
  line-height: 1.5;
}

@media (max-width: 425px) {
  .playforge-contact-channels-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.playforge-contact-channels-list li i {
  margin-top: 3px;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.playforge-contact-channels-link {
  position: relative;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.playforge-contact-channels-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-color);
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.playforge-contact-channels-link:hover {
  color: #006b2f;
}

.playforge-contact-channels-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.playforge-contact-channels-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
}

.playforge-contact-channels-image:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}


.playforge-tech-assist-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f9f1 0%, #f7fafc 100%);
}

.playforge-tech-assist-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-tech-assist-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-tech-assist-title i {
  color: #00cec9;
}

.playforge-tech-assist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
}

@media (max-width: 425px) {
  .playforge-tech-assist-grid {
    grid-template-columns: 1fr;
  }
}

.playforge-tech-assist-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-tech-assist-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #00cec9;
  transition: transform 0.4s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.playforge-tech-assist-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-tech-assist-item:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.playforge-tech-assist-item i {
  margin-bottom: 20px;
  color: #00cec9;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.playforge-tech-assist-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-tech-assist-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-tech-assist-item:hover h3 {
  color: #00cec9;
}

.playforge-tech-assist-item p {
  margin-bottom: 20px;
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.playforge-tech-assist-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  padding: 10px 20px;
  box-shadow: 0 4px 15px rgba(0, 206, 201, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background: #00cec9;
  transition: all 0.3s ease;
}

.playforge-tech-assist-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 206, 201, 0.4);
  background: #00b5b1;
  transform: translateY(-3px);
}


.playforge-creator-resources-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: #fff;
}

.playforge-creator-resources-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-creator-resources-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
  color: var(--main-text-color);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

.playforge-creator-resources-title i {
  color: #fdcb6e;
}

.playforge-creator-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  width: 100%;
}

.playforge-creator-resources-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-creator-resources-item:hover {
  border-color: rgba(253, 203, 110, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-creator-resources-item i {
  margin-bottom: 20px;
  color: #fdcb6e;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.playforge-creator-resources-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-creator-resources-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-creator-resources-item:hover h3 {
  color: #fdcb6e;
}

.playforge-creator-resources-item p {
  margin-bottom: 15px;
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.playforge-creator-resources-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fdcb6e;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.playforge-creator-resources-link::after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.playforge-creator-resources-link:hover {
  color: #f0b540;
}

.playforge-creator-resources-link:hover::after {
  transform: translateX(5px);
}


.playforge-community-engage-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #e8f5e9 100%);
}

.playforge-community-engage-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.playforge-community-engage-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-engage-title i {
  color: #ff6b6b;
}

.playforge-community-engage-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 800px;
  margin-bottom: 40px;
  color: var(--secondary-text-color);
  font-size: 1.15rem;
  line-height: 1.6;
  text-align: center;
}

.playforge-community-engage-text i {
  color: #ff6b6b;
}

.playforge-community-engage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  width: 100%;
  margin-bottom: 40px;
}

@media (max-width: 425px) {
  .playforge-community-engage-grid {
    grid-template-columns: 1fr;
  }
}

.playforge-community-engage-item {
  position: relative;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.playforge-community-engage-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  background: #ff6b6b;
  transition: opacity 0.4s ease;
}

.playforge-community-engage-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.playforge-community-engage-item:hover::after {
  opacity: 1;
}

.playforge-community-engage-item i {
  display: block;
  margin-bottom: 15px;
  color: #ff6b6b;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.playforge-community-engage-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.playforge-community-engage-item h3 {
  margin-bottom: 10px;
  color: var(--main-text-color);
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.playforge-community-engage-item:hover h3 {
  color: #ff6b6b;
}

.playforge-community-engage-item p {
  color: var(--secondary-text-color);
  font-size: 1rem;
}

.playforge-community-engage-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  padding: 15px 30px;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  background: #ff6b6b;
  transition: all 0.3s ease;
}

.playforge-community-engage-btn:hover {
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
  background: #ff5252;
  transform: translateY(-5px);
}

@media (max-width: 425px) {
  [class*="-title"] {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}