  
.icon-section {
  padding: 3rem 1rem;
  background-color: white;
  margin-bottom: 3rem;
  position: relative;
}

.icon-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.icon-card {
  background-color: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
  text-decoration: none;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.icon-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--gradient-primary);
  transition: height var(--transition-normal);
  z-index: -1;
}

.icon-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.icon-card:hover::before {
  height: 100%;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #6200ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: all var(--transition-normal);
  box-shadow: 0 10px 15px rgba(98, 0, 238, 0.2);
}

.icon-card:hover .icon-wrapper {
  background-color: white;
  color: #6200ee;
  transform: scale(1.1);
}

.icon-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: color var(--transition-normal);
  position: relative;
  z-index: 1;
}

.icon-card p {
  color: var(--gray);
  transition: color var(--transition-normal);
  position: relative;
  z-index: 1;
}

.icon-card:hover h3,
.icon-card:hover p {
  color: white;
}

.gaming-platforms {
  background-color: white;
}

.game-genres {
  background-color: #f8fafc;
}

.game-genres::before {
  background: var(--gradient-secondary);
}

.game-genres .icon-wrapper {
  background-color: #06b6d4;
  box-shadow: 0 10px 15px rgba(6, 182, 212, 0.2);
}

.game-genres .icon-card:hover .icon-wrapper {
  color: #06b6d4;
}

.game-genres .icon-card::before {
  background: var(--gradient-secondary);
}

.gaming-resources {
  background-color: white;
}

.gaming-resources::before {
  background: var(--gradient-accent);
}

.gaming-resources .icon-wrapper {
  background-color: #fb7185;
  box-shadow: 0 10px 15px rgba(251, 113, 133, 0.2);
}

.gaming-resources .icon-card:hover .icon-wrapper {
  color: #fb7185;
}

.gaming-resources .icon-card::before {
  background: var(--gradient-accent);
}

.community-features {
  background-color: #f8fafc;
}

@media (max-width: 767px) {
  .icon-section {
    padding: 2.5rem 1rem;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .icon-card {
    padding: 1.5rem;
  }

  .icon-card h3 {
    font-size: 1.3rem;
  }

  .icon-card p {
    font-size: 0.95rem;
  }

  .icon-grid {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .icon-section {
    padding: 3.5rem 2rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .icon-wrapper {
    width: 75px;
    height: 75px;
    font-size: 1.85rem;
  }

  .icon-card {
    padding: 2.5rem 2rem;
  }

  .icon-card h3 {
    font-size: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .icon-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }

  .icon-section {
    padding: 5rem 2rem;
    margin-bottom: 4rem;
  }

  .section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }

  .icon-wrapper {
    width: 90px;
    height: 90px;
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .icon-card {
    padding: 3rem 2rem;
  }

  .icon-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
  }

  .icon-card p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

@media (min-width: 1200px) {
  .icon-section {
    padding: 6rem 2rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .section-subtitle {
    font-size: 1.35rem;
  }

  .icon-grid {
    gap: 3rem;
  }

  .icon-card {
    padding: 3.5rem 2.5rem;
  }

  .icon-wrapper {
    width: 100px;
    height: 100px;
    font-size: 2.75rem;
  }

  .icon-card h3 {
    font-size: 1.75rem;
  }

  .icon-card p {
    font-size: 1.15rem;
  }
}
