body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #111;
  color: #fff;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 16px;
}

.hero {
  text-align: center;
  padding: 20px 10px;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.hero p {
  color: #ddd;
  margin: 0 auto 12px;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 51, 102, 0.14);
  border: 1px solid rgba(255, 51, 102, 0.55);
  color: #ffd6df;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
  animation: softPulse 2.2s ease-in-out infinite;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.stat-card {
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 10px;
}

.stat-card strong {
  display: block;
  color: #ffcc00;
  font-size: 18px;
}

.stat-card span {
  color: #ccc;
  font-size: 12px;
}

.warning {
  background: #2a2a2a;
  color: #ffcc00;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
}

.update-box {
  background: linear-gradient(135deg, #1b1b1b, #24131a);
  border: 1px solid #333;
  border-radius: 14px;
  padding: 16px;
  margin: 20px 0 24px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.update-box h2 {
  margin: 0 0 6px;
  font-size: 21px;
}

.update-box p {
  margin: 0 auto 14px;
  color: #ccc;
  max-width: 680px;
  font-size: 14px;
}

.join-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.join-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #202020;
  text-align: left;
  transform: translateY(0);
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.join-btn:hover,
.join-btn:focus {
  transform: translateY(-3px);
  filter: brightness(1.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.join-btn .join-icon {
  animation: iconFloat 2.8s ease-in-out infinite;
}

.join-btn.whatsapp {
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.join-btn.telegram {
  background: linear-gradient(135deg, #1f7eb7, #2aabee);
}

.join-btn.messenger {
  background: linear-gradient(135deg, #006aff, #a334fa);
}

.join-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 20px;
  flex: 0 0 auto;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.join-label {
  font-weight: bold;
  display: block;
}

.join-subtitle {
  font-size: 12px;
  opacity: 0.9;
}

.section-title {
  font-size: 22px;
  margin: 24px 0 6px;
}

.section-desc {
  color: #aaa;
  margin: 0 0 12px;
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.card {
  background: #1b1b1b;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #333;
  position: relative;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.card:hover {
  border-color: rgba(255, 51, 102, 0.6);
  box-shadow: 0 16px 30px rgba(255, 51, 102, 0.12);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #252525;
}

.card-content {
  padding: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ff3366;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.name {
  font-size: 18px;
  font-weight: bold;
  margin: 6px 0;
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cfcfcf;
  font-size: 12px;
  margin-bottom: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #777;
  display: inline-block;
}

.status-dot.live {
  background: #25d366;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.7);
  animation: livePulse 1.5s infinite;
}

.status-dot.active {
  background: #ffcc00;
}

.desc {
  font-size: 13px;
  color: #ccc;
  min-height: 35px;
}

.profile-flags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
}

.flag-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: #292929;
  border: 1px solid #3b3b3b;
  color: #ddd;
  padding: 4px 7px;
  font-size: 11px;
}

.premium-ribbon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 204, 0, 0.65);
  color: #ffcc00;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: bold;
  backdrop-filter: blur(5px);
}

.btn {
  display: block;
  background: #ff3366;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  font-weight: bold;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.ad-box {
  background: #222;
  border: 1px dashed #555;
  text-align: center;
  padding: 18px;
  margin: 24px 0;
  color: #aaa;
  border-radius: 10px;
}

.video-panel {
  margin-top: 26px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.video-card {
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

.video-caption {
  padding: 10px;
  color: #ddd;
  font-size: 14px;
  font-weight: bold;
}

.footer-cta {
  text-align: center;
  margin: 30px 0;
}

.big-btn {
  display: inline-block;
  background: #ff3366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  animation: softPulse 2.4s ease-in-out infinite;
}

.footer {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-top: 30px;
  padding-bottom: 20px;
}

.hidden {
  display: none !important;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes softPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@media (max-width: 520px) {
  .container {
    padding: 12px;
  }

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

  .grid {
    grid-template-columns: 1fr;
  }

  .join-buttons {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 240px;
  }
}
