body {
  background: #0f1419;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem;
  margin: 0;
  color: #d1d5db;
}

.section-title {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

.section-subtitle {
  color: #8892b0;
  font-size: 1rem;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.cards-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.platform-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #181c20;
  border: 2px solid var(--color-normal);
  border-radius: 5px;
  padding: 1.3rem 1.1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  font-family: inherit;
  transition: none;
}

.platform-card:hover {
  border-color: var(--color-normal);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transform: none;
}

.card-header {
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
}

.platform-icon {
  background: #23272b;
  color: #acb0b5;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.3rem;
}

.platform-info h3 {
  color: #f3f4f6;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  font-family: inherit;
}

.platform-handle {
  color: #9ca3af;
  font-size: 0.85rem;
  margin: 0;
  font-family: inherit;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  background: #20242a;
  border: 1px solid #23272b;
  border-radius: 10px;
  padding: 0.7rem 1rem;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  color: #acb0b5;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: inherit;
}

.stat-label {
  color: #6b7280;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-family: inherit;
}

.platform-description {
  color: #d1d5db;
  font-size: 0.93rem;
  line-height: 1.5;
  margin-bottom: 1.1rem;
  font-family: inherit;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #23272b;
  color: #d1d5db;
  border: 1px solid #23272b;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.85rem;
  transition: none;
  text-decoration: none;
  font-family: inherit;
}

.platform-link:hover {
  background: #23272b;
  color: #fff;
  border-color: #444;
}

.social-section {
  background: #2c2e31 !important;
  border-radius: 5px;
  border: 2px solid var(--color-normal);
  padding: 2.2rem 1.2rem 2.2rem 1.2rem;
  margin: 2.5rem auto 0 auto;
  max-width: 1000px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.social-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* Remove platform-specific accent colors */
.youtube-card,
.instagram-card,
.fiverr-card {
  --accent-color: #bdbdbd;
  --accent-hover: #bdbdbd;
  --icon-bg: #23272b;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
