* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #e9eef3;
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #08111f;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.nav nav {
  display: flex;
  gap: 22px;
}

.nav nav a {
  color: #d8e1ea;
  font-weight: 600;
}

.nav nav a.active,
.nav nav a:hover {
  color: #9cff39;
}

.hero {
  background: linear-gradient(135deg, #0049b8, #0c2f7a);
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 50px 0;
}

.hero-inner {
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 700px;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: #9cff39;
  color: #111;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #e7eef9;
  max-width: 620px;
  margin-bottom: 26px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9cff39;
  color: #111;
  font-weight: 800;
  padding: 16px 26px;
  border-radius: 999px;
}

.services-section {
  padding: 36px 0 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 26px;
}

.service-card {
  min-height: 250px;
  border-radius: 26px;
  padding: 28px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 35px rgba(0,0,0,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.service-card .icon {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 16px;
  opacity: .95;
  margin-bottom: 22px;
}

.card-btn {
  background: #fff;
  color: #222;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 800;
}

.instagram { background: #f51085; }
.tiktok { background: #1f242b; }
.youtube { background: #ff3636; }
.xplatform { background: #000000; }
.facebook { background: #3d87ea; }
.spotify { background: #31d164; }
.telegram { background: #31a3df; }
.trustpilot { background: #10bf7a; }
.whatsapp { background: #31d164; }
.linkedin { background: #226fcb; }
.twitch { background: #9250f2; }
.kwai { background: #ff5a0a; }
.kick { background: #48ff0a; color: #fff; }
.discord { background: #5865f2; }
.soundcloud { background: #ff6500; }
.snapchat { background: #fff600; color: #111; }
.reddit { background: #ff5a0a; }

.footer {
  background: #08111f;
  color: #cbd5df;
  text-align: center;
  padding: 22px 0;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(170px, 1fr));
  }
}

@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .nav {
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
  }

  .nav nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

  .hero {
    min-height: auto;
    padding: 44px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }
}
