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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.wrapper {
  width: 100%;
  max-width: 380px;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 20px 40px -10px rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Logo */
.logo-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.channel-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.verified-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  background: #0088cc;
  border-radius: 50%;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0, 136, 204, 0.3);
}

/* Brand Name */
.brand {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

/* CTA Button */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #00b0ff, #0088cc, #0055cc);
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.25);
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 136, 204, 0.35);
}

.cta-btn i {
  font-size: 20px;
}

/* Small Text */
.small-text {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.small-text .count {
  color: #0088cc;
  font-weight: 700;
}

/* Animations */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 375px) {
  .card { padding: 32px 20px; }
  .brand { font-size: 20px; }
  .cta-btn { font-size: 14px; padding: 14px 20px; }
  .logo-container { width: 100px; height: 100px; }
}
