/* ──────────────────────────────────────────────────────────────────────────
   Elite Celebrity — Custom CSS
   Design: Dark luxury, glassmorphism, gold accents, smooth animations
   ────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ────────────────────────────────────────────────────────── */
:root {
  --navy:          #0a0e1a;
  --navy-light:    #0f1628;
  --navy-lighter:  #162040;
  --navy-border:   #1e2a4a;
  --purple:        #7c3aed;
  --purple-light:  #9461f5;
  --purple-dark:   #5b21b6;
  --gold:          #f59e0b;
  --gold-light:    #fbbf24;
  --gold-dark:     #d97706;
  --text:          #f8fafc;
  --text-muted:    #94a3b8;
  --text-dim:      #64748b;
  --success:       #10b981;
  --danger:        #ef4444;
  --glass-bg:      rgba(15, 22, 40, 0.7);
  --glass-border:  rgba(124, 58, 237, 0.2);
  --glass-shadow:  0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) var(--navy-light);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-light); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 700; }

a { color: inherit; text-decoration: none; }

/* ── Glassmorphism ────────────────────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-card {
  background: linear-gradient(135deg, rgba(22, 32, 64, 0.8), rgba(15, 22, 40, 0.9));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(124, 58, 237, 0.1);
  transform: translateY(-4px);
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--navy-border);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-link {
  color: rgba(248, 250, 252, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover {
  color: #fff;
  background: rgba(124, 58, 237, 0.15);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--purple) 0%, #9f4ef8 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
  filter: brightness(1.1);
}
.btn-primary:active { transform: translateY(0); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, #fb923c 100%);
  color: #0a0e1a;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
  filter: brightness(1.05);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.btn-sm { padding: 0.5rem 1.2rem !important; font-size: 0.85rem !important; }

/* ── Hero Section ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;   /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 26, 0.85) 0%,
    rgba(10, 14, 26, 0.6)  50%,
    rgba(124, 58, 237, 0.2) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-up linear infinite;
  opacity: 0;
}
@keyframes float-up {
  0%   { transform: translateY(100%) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
}

/* ── Search Bar ──────────────────────────────────────────────────────────── */
.search-bar {
  display: flex;
  align-items: center;
  background: rgba(22, 32, 64, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 60px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  max-width: 700px;
  width: 100%;
  transition: var(--transition);
}
.search-bar:focus-within {
  border-color: var(--purple-light);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(124, 58, 237, 0.2);
}
.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}
.search-input::placeholder { color: var(--text-muted); }

/* ── Celebrity Cards ─────────────────────────────────────────────────────── */
.celeb-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  transition: var(--transition);
  cursor: pointer;
}
.celeb-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(124, 58, 237, 0.15);
}
.celeb-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.celeb-card:hover .celeb-card-img { transform: scale(1.05); }
.celeb-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, 0.97) 0%, rgba(10, 14, 26, 0.7) 60%, transparent 100%);
  padding: 1.5rem 1.2rem 1.2rem;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--gold) 0%, #fb923c 100%);
  color: #0a0e1a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Section Titles ──────────────────────────────────────────────────────── */
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}
.title-gradient {
  background: linear-gradient(135deg, #fff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-line {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ── Stats ───────────────────────────────────────────────────────────────── */
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(22, 32, 64, 0.8), rgba(15, 22, 40, 0.6));
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.stat-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-4px);
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ── Service Cards ───────────────────────────────────────────────────────── */
.service-card {
  background: linear-gradient(135deg, rgba(22, 32, 64, 0.9), rgba(15, 22, 40, 0.95));
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover, .service-card.selected {
  border-color: var(--purple-light);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(22, 32, 64, 0.9));
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.2);
}
.service-card.selected { border-color: var(--gold); }
.service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Category Pills ──────────────────────────────────────────────────────── */
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: rgba(22, 32, 64, 0.8);
  border: 1px solid var(--navy-border);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.cat-pill:hover, .cat-pill.active {
  background: linear-gradient(135deg, var(--purple) 0%, #9f4ef8 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input {
  width: 100%;
  background: rgba(22, 32, 64, 0.6);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--purple-light);
  background: rgba(22, 32, 64, 0.9);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.form-input::placeholder { color: var(--text-dim); }
select.form-input option { background: var(--navy-light); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── Dashboard Sidebar ───────────────────────────────────────────────────── */
.sidebar {
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
  border-right: 1px solid var(--navy-border);
  min-height: 100vh;
  position: sticky;
  top: 0;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  margin: 0.15rem 0;
}
.sidebar-link:hover, .sidebar-link.active {
  background: rgba(124, 58, 237, 0.15);
  color: var(--text);
  border-left: 3px solid var(--purple);
  padding-left: calc(1.25rem - 3px);
}

/* ── Booking Steps ───────────────────────────────────────────────────────── */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-lighter);
  border: 2px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.step-dot.active {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.5);
}
.step-dot.done {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}
.step-line {
  flex: 1;
  height: 2px;
  background: var(--navy-border);
  max-width: 80px;
}
.step-line.done { background: var(--gold); }

/* ── Notification Badge ──────────────────────────────────────────────────── */
.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--danger);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--navy);
}

/* ── Admin Sidebar ───────────────────────────────────────────────────────── */
.admin-sidebar {
  background: linear-gradient(180deg, #060910 0%, var(--navy) 100%);
  border-right: 1px solid var(--navy-border);
  min-height: 100vh;
  position: sticky;
  top: 0;
  width: 260px;
  flex-shrink: 0;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1.5rem;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-link:hover, .admin-nav-link.active {
  background: rgba(124, 58, 237, 0.12);
  color: var(--text);
  border-left-color: var(--purple);
}
.admin-stat-card {
  background: linear-gradient(135deg, rgba(22, 32, 64, 0.9), rgba(15, 22, 40, 0.8));
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}
.admin-stat-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  transform: translateY(-2px);
}

/* ── Table ───────────────────────────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.data-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: rgba(22, 32, 64, 0.8);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--navy-border);
}
.data-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(30, 42, 74, 0.5);
  vertical-align: middle;
  color: var(--text);
}
.data-table tr:hover td { background: rgba(22, 32, 64, 0.3); }
.data-table tr:last-child td { border-bottom: none; }

/* ── Profile Page ────────────────────────────────────────────────────────── */
.profile-cover {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.profile-photo-wrap {
  margin-top: -72px;
  position: relative;
  display: inline-block;
}
.profile-photo {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--navy);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* ── Alerts & Toasts ─────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  min-width: 320px;
  max-width: 460px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  font-weight: 500;
  animation: slide-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slide-in {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
.toast-success { background: linear-gradient(135deg, #064e3b, #065f46); border: 1px solid #10b981; }
.toast-error   { background: linear-gradient(135deg, #7f1d1d, #991b1b); border: 1px solid #ef4444; }
.toast-info    { background: linear-gradient(135deg, #1e1b4b, #312e81); border: 1px solid #7c3aed; }

/* ── Modal ───────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fade-in 0.2s ease;
}
.modal-box {
  background: linear-gradient(180deg, #0f1628 0%, #0a0e1a 100%);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  animation: scale-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes scale-in {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── How It Works ────────────────────────────────────────────────────────── */
.step-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple) 0%, #9f4ef8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: #060910;
  border-top: 1px solid var(--navy-border);
  padding: 4rem 0 2rem;
}

/* ── Pagination ──────────────────────────────────────────────────────────── */
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.page-btn:hover, .page-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* ── Auth Pages ──────────────────────────────────────────────────────────── */
.auth-gradient {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--navy) 40%, #0a0510 100%);
  min-height: 100vh;
}

/* ── Animations ──────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .admin-sidebar, .sidebar { width: 100%; min-height: auto; position: relative; border-right: none; }
}

@media (max-width: 768px) {
  .hero-video-wrap iframe { width: 177.78vh; min-width: unset; }
  .search-bar { border-radius: var(--radius-md); padding: 0.75rem 1rem; flex-direction: column; gap: 0.75rem; }
}

/* ── Floating Support Box ────────────────────────────────────────────────── */
.floating-support {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  background: rgba(15, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}

.floating-support:hover {
  transform: translateY(-5px);
  border-color: var(--purple-light);
  box-shadow: 0 15px 50px rgba(124, 58, 237, 0.4), 0 0 20px rgba(124, 58, 237, 0.1);
}

.floating-support i {
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.floating-support:hover i {
  transform: scale(1.2) rotate(-10deg);
}

@media (max-width: 640px) {
  .floating-support {
    bottom: 1rem;
    left: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}
