/* Socials Page Specific Styles */

.socials-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-banner {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 20px;
  border: 3px solid #ff6b00;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 107, 0, 0.9);
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.glowing-title {
  font-size: 3.5rem;
  color: #ff6b00;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.8),
               0 0 40px rgba(255, 107, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #cc5500;
  position: relative;
  z-index: 1;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.platform-card {
  background: #2a2a2a;
  border-radius: 20px;
  padding: 2.5rem;
  border: 3px solid #ff6b00;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.9);
}

.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 60px rgba(255, 107, 0, 1);
}

.card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.platform-card:hover .card-glow {
  opacity: 1;
}

.platform-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #333333;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ff6b00;
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.9);
}

.platform-icon img {
  width: 50px;
  height: 50px;
}

.platform-card h2 {
  color: #ff6b00;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.member-count {
  text-align: center;
  color: #cc5500;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.benefits-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #333333;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #ff6b00;
  transition: background 0.3s ease;
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.9);
}

.benefit-item:hover {
  background: #3a3a3a;
}

.benefit-item .icon {
  font-size: 1.5rem;
  min-width: 30px;
  text-align: center;
}

.benefit-item span:last-child {
  color: #cc5500;
  font-size: 1rem;
}

.platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  padding: 1.2rem;
  background: #ff6b00;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 15px;
  font-size: 1.3rem;
  font-weight: bold;
  border: 3px solid #ff6b00;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1;
}

.platform-btn > span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.platform-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.platform-btn:hover::before {
  width: 300px;
  height: 300px;
}

.platform-btn:hover {
  background: #cc5500;
  border-color: #cc5500;
  transform: scale(1.05);
}

.community-stats-banner {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 20px;
  border: 3px solid #ff6b00;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 0 45px rgba(255, 107, 0, 0.9);
}

.community-stats-banner h3 {
  color: #ff6b00;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-box {
  background: #333333;
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #ff6b00;
  transition: transform 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.9);
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  color: #ff6b00;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.6);
}

.stat-label {
  color: #cc5500;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .socials-wrapper {
    padding: 1rem;
  }

  .hero-banner {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .glowing-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .platform-card {
    padding: 1.5rem;
  }

  .platform-icon {
    width: 60px;
    height: 60px;
  }

  .platform-icon img {
    width: 35px;
    height: 35px;
  }

  .platform-card h2 {
    font-size: 1.5rem;
  }

  .benefit-item {
    padding: 0.8rem 1rem;
  }

  .platform-btn {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-box {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .community-stats-banner {
    padding: 1.5rem;
  }

  .community-stats-banner h3 {
    font-size: 1.5rem;
  }
}
