:root {
  --bg-main: #070a10;
  --card-bg: rgba(15, 22, 36, 0.65);
  --cyan-accent: #60DDF7;
  --cyan-glow: rgba(96, 221, 247, 0.4);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --glass-border: rgba(96, 221, 247, 0.25);
  --warning-border: rgba(255, 193, 7, 0.2);
  --warning-bg: rgba(255, 193, 7, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background-color: var(--bg-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
}

/* Background Glowing Ambient Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: var(--cyan-accent);
  top: 10%;
  left: 15%;
  animation: float 8s ease-in-out infinite alternate;
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: #3b82f6;
  bottom: 10%;
  right: 15%;
  animation: float 10s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 40px) scale(1.1); }
}

/* Glassmorphic Card */
.glass-container {
  position: relative;
  z-index: 1;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 36px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: cardAppear 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Live Badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(96, 221, 247, 0.1);
  border: 1px solid rgba(96, 221, 247, 0.3);
  color: var(--cyan-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--cyan-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan-accent);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(96, 221, 247, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(96, 221, 247, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(96, 221, 247, 0); }
}

/* Perfect Logo & Cyber Glow Setup */
.avatar-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  margin-bottom: 16px;
}

.avatar-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--cyan-accent), #3b82f6);
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.75;
  z-index: 1;
}

.avatar-wrapper img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--cyan-accent);
  background-color: var(--bg-main);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  display: block;
}

/* Typography */
.channel-title {
  color: var(--text-primary);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.verified-icon {
  color: var(--cyan-accent);
  font-size: 1.1rem;
}

.channel-username {
  color: var(--cyan-accent);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.channel-description {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 22px;
}

/* Stats Container */
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 22px;
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: block;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.25rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Neon Glow Join Button */
.btn-join {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, #60DDF7 0%, #3b82f6 100%);
  color: #070a10;
  padding: 16px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px var(--cyan-glow);
  margin-bottom: 22px;
  overflow: hidden;
}

.btn-join:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 35px rgba(96, 221, 247, 0.6);
}

.btn-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.btn-join:hover .btn-icon {
  transform: translateX(3px) rotate(-10deg);
}

/* Disclaimer Box */
.disclaimer-box {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
}

.disclaimer-header {
  color: #ffc107;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.disclaimer-icon {
  font-size: 0.9rem;
}

.disclaimer-text {
  color: var(--text-secondary);
  font-size: 0.78rem;
  line-height: 1.5;
}

.disclaimer-text strong {
  color: var(--text-primary);
}

/* Footer Note */
.footer-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Credits Badge Styling */
.credits-badge {
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.credit-highlight {
  color: var(--cyan-accent);
  font-weight: 700;
  text-shadow: 0 0 8px var(--cyan-glow);
}

/* Card Entrance Keyframe */
@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
