/* Premium Global Variable System */
:root {
  --bg-color: #060913;
  --card-bg: rgba(13, 18, 38, 0.7);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover-bg: rgba(18, 25, 53, 0.8);
  --card-hover-border: rgba(255, 255, 255, 0.12);
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  /* Primary & Accent Colors */
  --primary: #0d6efd;
  --primary-glow: rgba(13, 110, 253, 0.35);
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.25);
  --cyan: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.25);
  --gold: #f59e0b;
  --danger: #ef4444;
  --danger-glow: rgba(239, 68, 68, 0.25);
  
  /* Fonts */
  --font-display: 'Acme', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Transition curve */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Core Layout */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 12px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  overflow-x: hidden;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

/* Dynamic Radial Background Glows */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(100px);
  opacity: 0.15;
  mix-blend-mode: screen;
}
.bg-glow-1 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, #0d6efd 0%, transparent 70%);
  top: -10vw;
  left: -10vw;
}
.bg-glow-2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
  bottom: -15vw;
  right: -10vw;
}
.bg-glow-3 {
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  top: 30vh;
  left: 50%;
  transform: translateX(-50%);
}

/* Main Container styling */
.container {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glassmorphism Card System */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: var(--transition);
}

/* Header Styling */
.header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 2px solid rgba(13, 110, 253, 0.2);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stream-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-main);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  background-color: var(--danger);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 8px var(--danger);
}
.live-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--danger);
  animation: pulseOuter 1.5s ease-out infinite;
}

@keyframes pulseOuter {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Icon Buttons */
.icon-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  transform: rotate(45deg);
}
.icon-btn svg {
  width: 20px;
  height: 20px;
}

/* Generator Panel Styling */
.generator-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px dashed rgba(13, 110, 253, 0.4);
  background: rgba(9, 13, 31, 0.9);
  animation: dropdownSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}
.panel-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -6px;
  margin-bottom: 4px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input, .form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.2);
}
.form-group select option {
  background-color: #0b0f1f;
  color: var(--text-main);
}

.form-row {
  display: flex;
  gap: 10px;
}
.flex-1 {
  flex: 1;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  cursor: pointer;
  user-select: none;
}
.form-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-checkbox label {
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
}

/* Button UI */
.btn {
  font-family: var(--font-body);
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1b7aff, #0d6efd);
  box-shadow: 0 6px 20px var(--primary-glow);
  transform: translateY(-1px);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}
.btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 4px 14px var(--success-glow);
}
.btn-success:hover {
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 6px 20px var(--success-glow);
  transform: translateY(-1px);
}

/* Result Box Link Output */
.result-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4px;
}
.result-box label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
  display: block;
}
.copy-input-group {
  display: flex;
  gap: 8px;
}
.copy-input-group input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 8px;
  outline: none;
}
.copy-input-group .btn {
  width: auto;
  padding: 0 16px;
}

/* Video Player Container Styling */
.video-container {
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.4), 0 8px 30px rgba(0,0,0,0.7);
  animation: borderGlowPulse 6s ease-in-out infinite;
}

@keyframes borderGlowPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.3), 0 8px 30px rgba(0,0,0,0.7);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.5), 0 8px 40px rgba(6, 182, 212, 0.15);
  }
}

.video-container video, .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  z-index: 1;
}

/* Loader & Error Overlays */
.player-loader, .error-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px;
  z-index: 5;
  background: #080c18;
  color: var(--text-main);
  text-align: center;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(13, 110, 253, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.player-loader p {
  font-size: 13px;
  color: var(--text-muted);
}

.error-screen svg {
  width: 44px;
  height: 44px;
  color: var(--danger);
  filter: drop-shadow(0 0 8px var(--danger-glow));
}
.error-screen h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 4px;
}
.error-screen p {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.5;
}

/* Action Cards */
.action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--card-bg);
  border-left: 4px solid var(--primary);
}
.action-card:hover {
  background: var(--card-hover-bg);
  border-color: var(--card-hover-border);
  transform: translateY(-1px);
}

.action-card.join-channel {
  border-left: 4px solid var(--success);
}
.action-card.share-stream {
  border-left: 4px solid var(--cyan);
}

.action-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.action-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.text-gold { color: var(--gold); }
.text-cyan { color: var(--cyan); }

.action-info h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.action-info p {
  font-size: 11px;
  color: var(--text-muted);
}

.action-card .btn {
  width: auto;
  min-width: 140px;
  padding: 10px 14px;
  white-space: nowrap;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
}

.btn-action-telegram {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 4px 10px var(--success-glow);
}
.btn-action-telegram:hover {
  background: linear-gradient(135deg, #059669, #047857);
}

.btn-action-share {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #fff;
  box-shadow: 0 4px 10px var(--cyan-glow);
}
.btn-action-share:hover {
  background: linear-gradient(135deg, #0891b2, #0e7490);
}

.social-svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Footer Styling */
.site-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0 20px;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  margin-bottom: 6px;
}

.footer-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pulse-ring {
  width: 7px;
  height: 7px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--success);
  position: relative;
}
.pulse-ring::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--success);
  animation: pulseOuter 2s infinite;
}

.stats-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}
.stats-value {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(16, 185, 129, 0.1);
  padding: 1px 6px;
  border-radius: 5px;
  font-family: monospace;
}
.stats-unit {
  font-size: 11px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 2px;
  margin-top: 4px;
}

.footer-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.footer-nav-btn:hover {
  color: var(--primary);
  background: rgba(13, 110, 253, 0.08);
}
.footer-nav-btn svg {
  width: 12px;
  height: 12px;
}

.divider-dot {
  color: rgba(255, 255, 255, 0.15);
  font-size: 10px;
  user-select: none;
}

.copyright-credit {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 4px;
}
.copyright-credit strong {
  color: rgba(255, 255, 255, 0.45);
}

/* Bottom Sheet / Modal System */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sheet-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.sheet-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #090d1f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  max-height: 70vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  padding-bottom: max(20px, env(safe-area-inset-bottom));
}
.sheet-panel.active {
  transform: translateY(0);
}

.sheet-handle-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0 6px;
  position: sticky;
  top: 0;
  background: #090d1f;
  z-index: 2;
  cursor: grab;
}
.sheet-handle-bar:active {
  cursor: grabbing;
}
.sheet-handle {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 30px;
  background: #090d1f;
  z-index: 2;
}

.sheet-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sheet-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sheet-icon svg {
  width: 16px;
  height: 16px;
}

.sheet-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.3px;
}

.sheet-close {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.sheet-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  transform: rotate(90deg);
}
.sheet-close svg {
  width: 14px;
  height: 14px;
}

.sheet-body {
  padding: 18px 20px 10px;
  overflow-y: auto;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Modal Inner Document Section Styling */
.sheet-sec {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.sheet-sec-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.sheet-sec-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
}
.sheet-sec-icon svg {
  width: 16px;
  height: 16px;
}
.sheet-sec-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-main);
}
.sheet-sec p {
  font-size: 12px;
  margin-bottom: 6px;
}
.sheet-sec p:last-child {
  margin-bottom: 0;
}
.sheet-sec strong {
  color: var(--text-main);
}

.sheet-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 110, 253, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.2);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.sheet-badge svg {
  width: 11px;
  height: 11px;
}

/* Toast Messages */
.app-toast {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translate(-50%, 15px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-toast.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.app-toast-icon {
  width: 14px;
  height: 14px;
  color: var(--success);
}

/* Responsiveness / Desktop Adaptation */
@media (max-width: 480px) {
  body {
    padding: 8px;
  }
  .header-card {
    padding: 12px 14px;
  }
  .stream-title {
    font-size: 17px;
  }
  .action-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .action-card .btn {
    width: 100%;
    text-align: center;
  }
  .form-row {
    flex-direction: column;
    gap: 12px;
  }
  .video-container {
    padding-top: 75%; /* More square ratio on small phones to preserve space */
  }
}

@media (min-width: 768px) {
  /* Center bottom sheet as modal on desktops */
  .sheet-panel {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    max-height: 60vh;
  }
}

/* WhatsApp Join Popup Modal */
.wp-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 15, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wp-popup-card {
  background: rgba(13, 18, 38, 0.95);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 24px;
  width: 100%;
  max-width: 380px;
  padding: 30px 24px 26px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(16, 185, 129, 0.1);
  position: relative;
  overflow: hidden;
  animation: popupPopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes popupPopIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.wp-popup-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.wp-popup-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.wp-icon-wrapper {
  width: 58px;
  height: 58px;
  background: rgba(16, 185, 129, 0.12);
  border: 2px solid rgba(16, 185, 129, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}
.wp-icon-wrapper svg {
  width: 30px;
  height: 30px;
}

.wp-popup-header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.wp-popup-body {
  margin-bottom: 24px;
}
.wp-popup-body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.wp-channel-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 12px;
  margin-top: 14px;
}
.wp-channel-badge span {
  font-size: 11px;
  color: var(--text-muted);
}
.wp-channel-badge strong {
  color: #fff;
}

.wp-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-popup-join {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 14px;
  padding: 13px 18px;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}
.btn-popup-join:hover {
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
  transform: translateY(-1px);
}

.btn-popup-skip {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
  font-size: 12px;
  padding: 10px 16px;
}
.btn-popup-skip:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

