/* DJ Beatchic Mobile Link Hub Stylesheet */

:root {
  --bg-dark: #050c08;
  --card-bg: rgba(14, 30, 22, 0.72);
  --card-border: rgba(0, 255, 136, 0.18);
  --card-hover-border: rgba(0, 255, 136, 0.45);
  --emerald-glow: #00ff88;
  --teal-glow: #00f5d4;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --font-heading: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  padding: 36px 20px 48px;
  padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
}

/* Ambient glow blobs */
.ambient-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.28;
  z-index: 0;
}

.glow-top {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--emerald-glow), transparent 70%);
}

.glow-bottom {
  bottom: -100px;
  right: -50px;
  background: radial-gradient(circle, var(--teal-glow), transparent 70%);
}

/* Main Container */
.hub-container {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Profile Header */
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--emerald-glow), var(--teal-glow));
  box-shadow: 0 0 28px rgba(0, 255, 136, 0.4);
  margin-bottom: 16px;
  animation: ringPulse 4s ease-in-out infinite alternate;
}

@keyframes ringPulse {
  0% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
  100% { box-shadow: 0 0 35px rgba(0, 245, 212, 0.55); }
}

.avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #071911;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-initials {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--emerald-glow);
  letter-spacing: -1px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--emerald-glow);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--emerald-glow);
  box-shadow: 0 0 8px var(--emerald-glow);
  animation: blinkDot 1.4s infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

.dj-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #ffffff 30%, var(--emerald-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dj-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 320px;
}

/* Sections */
.hub-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--emerald-glow);
  text-transform: uppercase;
}

.section-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: -6px;
  margin-bottom: 4px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Action Cards */
.action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  color: var(--text-main);
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.action-card:hover, .action-card:active {
  transform: translateY(-2px) scale(1.01);
  border-color: var(--card-hover-border);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.15);
  background: rgba(18, 42, 30, 0.85);
}

.card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.action-card:hover .card-icon-box {
  transform: scale(1.08);
}

.venmo .card-icon-box { color: #008cff; background: rgba(0, 140, 255, 0.12); border-color: rgba(0, 140, 255, 0.25); }
.zelle .card-icon-box { color: #fffffc; background: rgba(116, 20, 202, 0.32); border-color: rgba(157, 78, 221, 0.45); }
.cashapp .card-icon-box { color: #00d632; background: rgba(0, 214, 50, 0.12); border-color: rgba(0, 214, 50, 0.25); }
.paypal .card-icon-box { color: #009cde; background: rgba(0, 156, 222, 0.12); border-color: rgba(0, 156, 222, 0.25); }
.instagram .card-icon-box { color: #f02849; background: rgba(240, 40, 73, 0.12); border-color: rgba(240, 40, 73, 0.25); }
.soundcloud .card-icon-box { color: #ff5500; background: rgba(255, 85, 0, 0.12); border-color: rgba(255, 85, 0, 0.25); }
.spotify .card-icon-box { color: #1db954; background: rgba(29, 185, 84, 0.12); border-color: rgba(29, 185, 84, 0.25); }
.tiktok .card-icon-box { color: #00f2fe; background: rgba(0, 242, 254, 0.12); border-color: rgba(0, 242, 254, 0.25); }

.copy-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(116, 20, 202, 0.22);
  border: 1px solid rgba(157, 78, 221, 0.45);
  color: #c48eff;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.copy-badge.copied {
  background: rgba(0, 255, 136, 0.22);
  border-color: rgba(0, 255, 136, 0.6);
  color: #00ff88;
}

/* Toast notification */
.hub-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(8, 24, 16, 0.95);
  border: 1px solid var(--emerald-glow);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 24px rgba(0, 255, 136, 0.35);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.hub-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
}

.card-handle {
  font-size: 13px;
  color: var(--text-muted);
}

.arrow {
  font-size: 16px;
  color: var(--emerald-glow);
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.action-card:hover .arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Footer */
.hub-footer {
  text-align: center;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.75;
}

.copyright {
  font-size: 11px;
  opacity: 0.6;
}
