@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Manrope:wght@400;500;600;700;800;900&family=Sora:wght@400;500;600;700;800&display=swap');

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

:root {
  --gold1: #f7971e; 
  --gold2: #ffd200;
  --gold-grad: linear-gradient(135deg, #ffe072 0%, #f7971e 50%, #9c5200 100%);
  --bg1: #030307; 
  --bg2: #080816;
  --card-bg: rgba(12, 12, 22, 0.65);
  --card-border: rgba(247, 151, 30, 0.12); 
  --text: #f9fafb;
  --sub: rgba(255, 255, 255, 0.55);
  --success: #10b981; 
  --error: #ef4444;
  --font-family: 'Sora', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --glass-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

html {
  scroll-behavior: smooth;
}

body { 
  min-height: 100vh; 
  background-color: var(--bg1);
  background-image: radial-gradient(circle at 50% 20%, #151530 0%, var(--bg1) 70%); 
  font-family: var(--font-family); 
  color: var(--text);
  overflow-x: hidden; 
  position: relative; 
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* Ambient Auroras */
.blob { 
  position: fixed; 
  border-radius: 50%; 
  filter: blur(140px); 
  opacity: 0.12; 
  pointer-events: none; 
  animation: blobMove 25s ease-in-out infinite alternate; 
  z-index: 1;
}
.blob-1 { 
  width: 600px; 
  height: 600px; 
  background: radial-gradient(circle, rgba(247,151,30,0.25) 0%, transparent 70%); 
  top: -150px; 
  left: -150px; 
  animation-duration: 22s; 
}
.blob-2 { 
  width: 500px; 
  height: 500px; 
  background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%); 
  bottom: -100px; 
  right: -100px; 
  animation-duration: 18s; 
}
.blob-3 { 
  width: 400px; 
  height: 400px; 
  background: radial-gradient(circle, rgba(255,210,0,0.15) 0%, transparent 70%); 
  top: 40%; 
  left: 30%; 
  animation-duration: 25s; 
}
@keyframes blobMove { 
  0% { transform: translate(0,0) scale(1); } 
  50% { transform: translate(60px,-50px) scale(1.1); } 
  100% { transform: translate(-50px,60px) scale(0.9); } 
}

/* Golden Particles */
.particles { 
  position: fixed; 
  inset: 0; 
  pointer-events: none; 
  overflow: hidden; 
  z-index: 2; 
}
.particle { 
  position: absolute; 
  width: 2px; 
  height: 2px; 
  background: #ffd200; 
  border-radius: 50%; 
  opacity: 0; 
  animation: particleFly linear infinite; 
}
@keyframes particleFly { 
  0% { transform: translateY(105vh) translateX(0); opacity: 0; } 
  10% { opacity: 0.7; } 
  90% { opacity: 0.4; } 
  100% { transform: translateY(-5vh) translateX(50px); opacity: 0; } 
}

/* ── STICKY TOP NAV ── */
.topnav {
  width: 100%; 
  position: sticky;
  top: 0;
  left: 0;
  background: rgba(3, 3, 7, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 100;
  transition: all 0.3s ease;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  text-decoration: none;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1.5px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-logo:hover .nav-logo-mark {
  transform: scale(1.08) rotate(5deg);
  border-color: rgba(244, 114, 182, 0.4);
  box-shadow: 0 8px 25px rgba(244, 114, 182, 0.15);
}
.nav-logo-text { 
  font-family: 'Great Vibes', cursive, 'Sora', sans-serif;
  font-size: 23px;
  font-weight: 700;
  background: linear-gradient(135deg, #fbcfe8 20%, #f472b6 60%, #db46ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}
.nav-link {
  color: var(--sub);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--text);
}
.nav-actions { 
  display: flex; 
  gap: 10px; 
  align-items: center; 
}
.nav-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px 16px;
  color: var(--sub);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.nav-btn:hover { 
  background: rgba(247, 151, 30, 0.06);
  border-color: rgba(247, 151, 30, 0.25);
  color: var(--text);
  transform: translateY(-1px);
}
.nav-btn.gold { 
  background: rgba(247, 151, 30, 0.12);
  border-color: rgba(247, 151, 30, 0.30);
  color: #ffd200; 
}
.nav-btn.gold:hover { 
  background: var(--gold-grad);
  border-color: transparent;
  color: #030307;
  box-shadow: 0 4px 15px rgba(247, 151, 30, 0.3);
}

.balance-badge {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 8px 14px;
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.balance-badge span { 
  color: rgba(255,255,255,0.4); 
  font-weight: 500; 
  margin-right: 4px; 
}

/* Account button matching reference */
.account-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.account-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.account-btn svg {
  opacity: 0.8;
  transition: all 0.2s ease;
}
.account-btn:hover svg {
  opacity: 1;
}

/* Highlighted Nav Button (e.g. Add Locket style) */
.highlight-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.06);
  border: 1.5px solid rgba(124, 58, 237, 0.35);
  color: #ffd200;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.highlight-btn:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
}

/* Account Dropdown Premium Style */
.account-menu {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 12px;
  background: #0f0f13;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  min-width: 250px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.03);
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  overflow: hidden;
}
.dropdown-content.show {
  display: block;
  animation: modalIn 0.25s ease;
}
.dropdown-header {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.dropdown-meta {
  font-size: 11px;
  color: #71717a;
  font-weight: 500;
}
.dropdown-name {
  font-size: 15px;
  color: #ffffff;
  font-weight: 750;
  margin-bottom: 6px;
}
.dropdown-badge {
  font-size: 10px;
  color: #a1a1aa;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 8px;
}
.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 6px 0;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  color: #d4d4d8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-align: left;
}
.dropdown-item svg {
  color: #a1a1aa;
  transition: all 0.2s ease;
}
.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
}
.dropdown-item:hover svg {
  color: #ffffff;
}
.dropdown-item.logout {
  color: #fca5a5;
}
.dropdown-item.logout svg {
  color: #fca5a5;
}
.dropdown-item.logout:hover {
  background: rgba(239, 68, 68, 0.06);
  color: #ef4444;
}
.dropdown-item.logout:hover svg {
  color: #ef4444;
}

/* Hamburger Menu Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  padding: 12px 10px;
  margin: -12px -10px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── HERO SECTION ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 10;
}
.hero-content {
  flex: 1.2;
}
.badge-promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(247, 151, 30, 0.1);
  border: 1px solid rgba(247, 151, 30, 0.25);
  color: #ffd200;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}
.hero-title span.grad {
  background: linear-gradient(135deg, #fff 30%, #ffd200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 16px;
  color: var(--sub);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 14px;
}
.btn-primary {
  background: var(--gold-grad);
  border: none;
  color: #030307;
  padding: 14px 28px;
  font-size: 14.5px;
  font-weight: 800;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(247, 151, 30, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(247, 151, 30, 0.5);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 14px 28px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── HERO IMAGE PREVIEW WRAPPER ── */
.hero-image-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.hero-preview-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.45));
  animation: previewFloat 6s ease-in-out infinite;
}
@keyframes previewFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── MAIN TOOL WRAPPER & CONTAINER ── */
.tool-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px 80px;
  position: relative;
  z-index: 10;
  scroll-margin-top: 80px;
}
.wrapper { 
  width: 100%; 
  max-width: 480px; 
  margin: 0 auto; 
}
.card {
  background: var(--card-bg);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 40px 32px 32px;
  box-shadow: var(--glass-glow), 
              0 0 45px rgba(247, 151, 30, 0.02),
              inset 0 1px 0 rgba(255,255,255,0.05);
  animation: cardIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes cardIn { 
  from { opacity: 0; transform: translateY(20px) scale(0.98); } 
  to { opacity: 1; transform: translateY(0) scale(1); } 
}

/* Tool Inner Elements */
.logo { 
  text-align: center; 
  margin-bottom: 28px; 
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  position: relative;
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.logo h1 {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 40%, #ffe072 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo p { 
  color: var(--sub); 
  font-size: 13px; 
  margin-top: 4px; 
  font-weight: 500; 
}

/* Key section styles */
.key-section { 
  margin-bottom: 18px; 
}
.key-alert { 
  font-size: 12.5px; 
  padding: 12px 14px; 
  border-radius: 12px; 
  margin-bottom: 12px; 
  display: none; 
  font-weight: 600; 
}
.key-alert.show { 
  display: block; 
}
.key-alert.error { 
  background: rgba(239, 68, 68, 0.06); 
  border: 1px solid rgba(239, 68, 68, 0.18); 
  color: #fca5a5; 
}
.key-alert.success { 
  background: rgba(16, 185, 129, 0.06); 
  border: 1px solid rgba(16, 185, 129, 0.18); 
  color: #a7f3d0; 
}

.key-input-group { 
  display: flex; 
  gap: 8px; 
}
.key-input-group input {
  flex: 1;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(247,151,30,0.18);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 13px;
  outline: none;
  font-family: monospace;
  transition: all 0.25s ease;
}
.key-input-group input:focus {
  border-color: rgba(247,151,30,0.5);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 0 0 3px rgba(247,151,30,0.12);
}
.key-input-group input::placeholder { 
  color: rgba(255,255,255,0.22); 
  font-family: var(--font-family); 
}

.btn-activate {
  background: rgba(247,151,30,0.08);
  border: 1px solid rgba(247,151,30,0.25);
  border-radius: 12px;
  padding: 12px 18px;
  color: #ffd200;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.btn-activate:hover:not(:disabled) {
  background: rgba(247,151,30,0.18);
  border-color: rgba(247,151,30,0.4);
}
.btn-activate:disabled { 
  opacity: 0.5; 
  cursor: not-allowed; 
}

.key-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.02);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 12.5px;
}
.key-info-label { 
  color: var(--sub); 
  font-weight: 500; 
}
.key-info-val { 
  color: #ffd200; 
  font-family: monospace; 
  font-weight: 700; 
  flex: 1; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  white-space: nowrap; 
}
.key-info-exp { 
  color: #34d399; 
  white-space: nowrap; 
  font-weight: 700; 
  background: rgba(16, 185, 129, 0.08); 
  padding: 2px 6px; 
  border-radius: 6px; 
  font-size: 11px;
}

/* User Card Preview */
.user-preview {
  display: none;
  background: linear-gradient(135deg, rgba(247,151,30,0.06) 0%, rgba(255,210,0,0.01) 100%);
  border: 1px solid rgba(247,151,30,0.15);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 14px;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeIn 0.35s ease;
}
.user-preview.show { 
  display: flex; 
}
.user-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffd200;
  background: rgba(255,255,255,0.03);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(247,151,30,0.25);
}
.user-info { 
  flex: 1; 
  min-width: 0; 
}
.user-name { 
  color: var(--text); 
  font-weight: 700; 
  font-size: 14.5px; 
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
}
.user-username { 
  color: var(--sub); 
  font-size: 12.5px; 
  margin-top: 2px; 
}
.verified-badge {
  background: var(--gold-grad);
  color: #030307;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(247,151,30,0.25);
  display: flex;
  align-items: center;
}

/* User Search */
.input-group { 
  display: flex; 
  gap: 8px; 
  margin-bottom: 14px; 
}
.input-wrap { 
  flex: 1; 
  position: relative; 
}
.at-sign { 
  position: absolute; 
  left: 14px; 
  top: 50%; 
  transform: translateY(-50%); 
  color: #ffd200; 
  font-size: 14px; 
  font-weight: 800; 
  pointer-events: none; 
}
.input-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 12px 14px 12px 14px;
  color: var(--text);
  font-size: 13.5px;
  outline: none;
  transition: all 0.25s ease;
}
.input-wrap input::placeholder { 
  color: rgba(255,255,255,0.2); 
}
.input-wrap input:focus {
  border-color: rgba(247,151,30,0.45);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 0 0 3px rgba(247,151,30,0.1);
}

.btn-check {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 12px 18px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.btn-check:hover:not(:disabled) {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.btn-check:disabled { 
  opacity: 0.5; 
  cursor: not-allowed; 
}

.btn-kick {
  width: 100%;
  padding: 15px;
  background: var(--gold-grad);
  border: none;
  border-radius: 14px;
  color: #030307;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(247, 151, 30, 0.3);
  letter-spacing: 0.2px;
}
.btn-kick:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(247, 151, 30, 0.45);
}
.btn-kick:disabled {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn-dns {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  background: rgba(59,130,246,0.04);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 14px;
  color: #60a5fa;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: none;
}
.btn-dns.show { 
  display: block; 
  animation: pulseBlue 2s infinite; 
}
.btn-dns:hover {
  background: rgba(59,130,246,0.1);
  border-color: #60a5fa;
}

.status {
  margin-top: 12px;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.status.show { 
  display: flex; 
}
.status.loading { 
  background: rgba(59,130,246,0.05); 
  border: 1px solid rgba(59,130,246,0.15); 
  color: #93c5fd; 
}
.status.success { 
  background: rgba(16,185,129,0.05); 
  border: 1px solid rgba(16,185,129,0.15); 
  color: #a7f3d0; 
}
.status.error { 
  background: rgba(239,68,68,0.05); 
  border: 1px solid rgba(239,68,68,0.15); 
  color: #fca5a5; 
}

.footer { 
  margin-top: 24px; 
  text-align: center; 
  color: rgba(255,255,255,0.18); 
  font-size: 11.5px; 
  font-weight: 500; 
}

/* ── LIVE ACTIVITY TICKER ── */
.activity-ticker {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 30px;
  text-align: center;
}
.ticker-title {
  color: var(--sub);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ticker-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  animation: pulseGreen 1.5s infinite;
}
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.ticker-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ticker-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: floatTicker 4s ease-in-out infinite alternate;
}
.ticker-item span.time {
  color: var(--sub);
}
.ticker-item span.badge {
  color: #ffd200;
  font-weight: 700;
  background: rgba(247,151,30,0.1);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 10px;
}

/* ── FEATURES SECTION ── */
.features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 10;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-subtitle {
  color: #ffd200;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.8px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(247,151,30,0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247,151,30,0.22);
  background: rgba(247,151,30,0.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(247,151,30,0.08);
  border: 1px solid rgba(247,151,30,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #ffd200;
}
.feature-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.feature-card p {
  color: var(--sub);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ── STEP TIMELINE SECTION ── */
.steps-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 10;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.step-card {
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  position: relative;
}
.step-badge {
  width: 48px;
  height: 48px;
  background: var(--gold-grad);
  color: #030307;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -56px auto 20px;
  box-shadow: 0 4px 15px rgba(247,151,30,0.35);
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  color: var(--sub);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ── PRICING SECTION ── */
.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 10;
  scroll-margin-top: 80px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  max-width: 900px;
  margin: 20px auto 0;
  gap: 24px;
}
.price-card-v2 {
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 30px 20px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.price-card-v2:hover {
  border-color: rgba(247,151,30,0.3);
  background: rgba(247,151,30,0.02);
  transform: translateY(-3px);
}
.price-card-v2.pc-featured {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.03);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.08);
}
.price-card-v2.pc-featured:hover {
  border-color: rgba(139, 92, 246, 0.6);
  background: rgba(139, 92, 246, 0.05);
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
  text-transform: uppercase;
}
.pc-badge-year {
  background: var(--gold-grad);
  color: #030307;
  box-shadow: 0 4px 12px rgba(247,151,30,0.3);
}
.pc-header { 
  margin-bottom: 16px; 
}
.pc-name { 
  color: var(--text); 
  font-size: 15px; 
  font-weight: 700; 
  margin-bottom: 6px; 
}
.pc-price { 
  color: #ffd200; 
  font-size: 28px; 
  font-weight: 800; 
  letter-spacing: -0.5px; 
  line-height: 1; 
}
.pc-unit { 
  color: var(--sub); 
  font-size: 11px; 
  margin-top: 4px; 
}
.pc-save {
  color: #10b981;
  font-size: 10.5px;
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.4;
  background: rgba(16, 185, 129, 0.06);
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
}

.pc-features { 
  list-style: none; 
  flex: 1; 
  margin: 10px 0 20px; 
}
.pc-features li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pc-features li:last-child { 
  border-bottom: none; 
}
.pc-features li::before {
  content: "✦";
  color: #ffd200;
  font-size: 11px;
}

.pc-btn {
  width: 100%;
  padding: 11px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}
.pc-btn:hover {
  background: rgba(247, 151, 30, 0.12);
  border-color: rgba(247, 151, 30, 0.35);
  color: #ffd200;
  transform: translateY(-1px);
}
.pc-btn-featured {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
}
.pc-btn-featured:hover {
  background: rgba(139, 92, 246, 0.22);
  border-color: rgba(139, 92, 246, 0.45);
  color: #fff;
}
.pc-btn-year {
  background: rgba(247, 151, 30, 0.12);
  border-color: rgba(247, 151, 30, 0.3);
  color: #ffd200;
}
.pc-btn-year:hover {
  background: var(--gold-grad);
  border-color: transparent;
  color: #030307;
}

/* ── FAQ SECTION ── */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  position: relative;
  z-index: 10;
  scroll-margin-top: 80px;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}
.faq-question::after {
  content: "+";
  font-size: 18px;
  color: #ffd200;
  transition: transform 0.3s ease;
}
.faq-item.active {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(247, 151, 30, 0.15);
}
.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  color: var(--sub);
  font-size: 13.5px;
  line-height: 1.6;
}
.faq-answer-inner {
  padding: 0 24px 20px;
}

/* ── BOTTOM CALL TO ACTION ── */
.cta-banner {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
.cta-card {
  background: linear-gradient(135deg, rgba(247,151,30,0.08) 0%, rgba(139,92,246,0.04) 100%);
  border: 1px solid rgba(247,151,30,0.2);
  border-radius: 28px;
  padding: 50px;
  text-align: center;
  box-shadow: var(--glass-glow);
}
.cta-card h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-card p {
  color: var(--sub);
  font-size: 14.5px;
  margin-bottom: 24px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ── MODALS AND OVERLAYS ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,2,4,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.show { 
  opacity: 1; 
  pointer-events: all; 
}

.modal {
  background: rgba(10, 10, 20, 0.94);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  width: 100%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
}
.modal::-webkit-scrollbar { 
  width: 5px; 
}
.modal::-webkit-scrollbar-thumb { 
  background: rgba(255, 255, 255, 0.15); 
  border-radius: 3px; 
}
.modal-header { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  margin-bottom: 18px; 
}
.modal-title { 
  color: var(--text); 
  font-size: 17px; 
  font-weight: 800; 
  display: flex; 
  align-items: center; 
  gap: 6px; 
}

.modal-close {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  color: var(--sub);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  transform: rotate(90deg);
}

.modal-wide { 
  max-width: 900px; 
}

/* Success popup */
.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(2,2,4,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.success-popup.show { 
  opacity: 1; 
  pointer-events: all; 
}

.success-box {
  background: rgba(10, 10, 20, 0.95);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 45px 100px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.2) both;
}
@keyframes popIn { 
  from { transform: scale(0.9); opacity: 0; } 
  to { transform: scale(1); opacity: 1; } 
}

.success-icon-big {
  width: 64px;
  height: 64px;
  background: var(--gold-grad);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #030307;
  box-shadow: 0 0 30px rgba(247,151,30,0.4);
  animation: glow 2s ease infinite;
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(247,151,30,0.3); transform: scale(1); }
  50% { box-shadow: 0 0 35px rgba(247,151,30,0.55); transform: scale(1.03); }
}
.success-box h2 { 
  color: #fff; 
  font-size: 19px; 
  font-weight: 800; 
  margin-bottom: 6px; 
}
.success-box p { 
  color: var(--sub); 
  font-size: 13px; 
  margin-bottom: 20px; 
  line-height: 1.5; 
}

.btn-ok {
  background: var(--gold-grad);
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  color: #030307;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(247,151,30,0.25);
}
.btn-ok:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 8px 24px rgba(247,151,30,0.4);
}

/* guide list */
.guide-steps { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  margin-bottom: 16px; 
}
.guide-step { 
  display: flex; 
  gap: 12px; 
  align-items: flex-start; 
}
.step-num { 
  width: 24px; 
  height: 24px; 
  background: var(--gold-grad); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #030307; 
  font-size: 12px; 
  font-weight: 800; 
  flex-shrink: 0; 
}
.step-body { 
  flex: 1; 
}
.step-title { 
  color: var(--text); 
  font-size: 13px; 
  font-weight: 700; 
  margin-bottom: 2px; 
}
.step-desc { 
  color: var(--sub); 
  font-size: 11.5px; 
  line-height: 1.4; 
}
.step-note { 
  color: #f87171; 
  font-size: 10.5px; 
  margin-top: 3px; 
  font-style: italic; 
}

/* History Modal items */
.history-empty { 
  text-align: center; 
  color: var(--sub); 
  font-size: 13px; 
  padding: 30px 0; 
}
.history-item {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  margin-bottom: 8px;
}
.history-date { 
  color: var(--sub); 
  font-size: 10.5px; 
  margin-top: 3px; 
}

/* CSS Ripple click animation */
.ripple { 
  position: absolute; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.25); 
  transform: scale(0); 
  animation: rippleAnim .5s linear; 
  pointer-events: none; 
}
@keyframes rippleAnim { 
  to { transform: scale(4); opacity: 0; } 
}

.spinner { 
  width: 14px; 
  height: 14px; 
  border: 2px solid rgba(255,255,255,0.2); 
  border-top-color: currentColor; 
  border-radius: 50%; 
  animation: spin .6s linear infinite; 
}
.btn-spinner { 
  display: inline-block; 
  width: 12px; 
  height: 12px; 
  border: 2px solid rgba(0,0,0,0.2); 
  border-top-color: #030307; 
  border-radius: 50%; 
  animation: spin .6s linear infinite; 
  vertical-align: middle; 
  margin-right: 5px; 
}
@keyframes spin { 
  to { transform: rotate(360deg); } 
}

/* ── DEPOSIT INFO ── */
.deposit-info {
  background: rgba(247,151,30,0.02);
  border: 1px solid rgba(247,151,30,0.1);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
}
.deposit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.deposit-row:last-child { 
  border-bottom: none; 
}
.deposit-row .label { 
  color: var(--sub); 
  font-size: 12px; 
}
.deposit-row .val { 
  color: var(--text); 
  font-weight: 700; 
  font-size: 13.5px; 
}

.copy-btn {
  background: rgba(247, 151, 30, 0.08);
  border: 1px solid rgba(247, 151, 30, 0.2);
  border-radius: 6px;
  padding: 3px 8px;
  color: #ffd200;
  font-size: 10.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.copy-btn:hover {
  background: rgba(247, 151, 30, 0.16);
  border-color: rgba(247, 151, 30, 0.3);
}

/* ── SOCIAL CONTACT FLOATING BUTTONS ── */
.floating-contacts {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}
.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
}
.float-btn.zalo {
  background: #0068ff;
  border: 1px solid rgba(255,255,255,0.1);
}
.float-btn.zalo:hover {
  box-shadow: 0 8px 24px rgba(0, 104, 255, 0.4);
}
.float-btn.telegram {
  background: #229ED9;
  border: 1px solid rgba(255,255,255,0.1);
}
.float-btn.telegram:hover {
  box-shadow: 0 8px 24px rgba(34, 158, 217, 0.4);
}

/* ── MAIN LANDING FOOTER ── */
.main-footer {
  background: #020204;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 48px 24px 30px;
  position: relative;
  z-index: 10;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-brand {
  flex: 1.5;
  min-width: 250px;
}
.footer-desc {
  color: var(--sub);
  font-size: 13px;
  margin-top: 12px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-navs {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-col {
  min-width: 120px;
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: var(--sub);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #ffd200;
}
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--sub);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: var(--sub);
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: #fff;
}

/* ── RESPONSIVE DESIGN BREAKPOINTS ── */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px 40px;
    gap: 30px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 1200px) {
  .nav-logo-text {
    font-size: 19px;
  }
  .nav-links {
    display: none !important;
  }
  .nav-actions .nav-btn, 
  .nav-actions .balance-badge, 
  .nav-actions .account-menu {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 20px;
  }
  .step-badge {
    margin-top: -24px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-title {
    font-size: 26px;
  }
  .hero-title {
    font-size: 34px;
  }
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

/* ── MOBILE NAV DRAWER (PREMIUM STYLE MATCHING USER SCREENSHOT) ── */
.nav-mobile-overlay {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 3, 7, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}
.nav-mobile-overlay.active {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

.nav-mobile {
  display: none !important;
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fbf9fe;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.8);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  flex-direction: column;
  padding: 24px 20px;
  box-sizing: border-box;
  overflow-y: auto;
}
.nav-mobile.active {
  display: flex !important;
  transform: translateX(0);
}

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.nav-mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-mobile-brand-text {
  font-family: 'Great Vibes', cursive, 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #c084fc, #db46ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.nav-mobile-close {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 26px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  line-height: 1;
}
.nav-mobile-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #111827;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-mobile-link:not(.gold-highlight):not(.cta):hover {
  background: rgba(124, 58, 237, 0.04);
  color: #7c3aed;
}
.nav-mobile-link.active {
  background: #f5f3ff;
  color: #7c3aed;
}
.nav-mobile-link.gold-highlight {
  color: #7c3aed;
  font-weight: 700;
}

.nav-mobile-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
}
.nav-mobile-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 12px;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.2s;
}
.nav-mobile-btn.purple {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
  border: none;
}
.nav-mobile-btn.purple:hover {
  filter: brightness(1.08);
}
.nav-mobile-btn.outline {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #1f2937;
}
.nav-mobile-btn.outline:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

/* Pricing Options List inside Cards */
.pc-options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 15px;
  text-align: left;
}
.pc-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.pc-option-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.pc-option-row.featured {
  background: rgba(247, 151, 30, 0.03);
  border-color: rgba(247, 151, 30, 0.15);
}
.pc-option-row.featured:hover {
  background: rgba(247, 151, 30, 0.05);
  border-color: rgba(247, 151, 30, 0.25);
}
.pc-option-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pc-option-title {
  font-size: 12px;
  color: var(--sub);
  font-weight: 500;
}
.pc-option-price {
  font-size: 15px;
  font-weight: 750;
  color: var(--text);
}
.pc-option-btn {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.pc-option-btn:hover {
  background: #f7971e;
  border-color: #f7971e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(247, 151, 30, 0.2);
}
.pc-option-btn.gold {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  border: none;
  color: #000;
}
.pc-option-btn.gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(247, 151, 30, 0.35);
}
.pc-option-btn.purple {
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  border: none;
  color: #fff;
}
.pc-option-btn.purple:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

/* Balance box inside dropdown */
.dropdown-balance-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 14px;
  margin: 6px 14px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-balance-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dropdown-balance-label {
  font-size: 10px;
  color: #71717a;
  font-weight: 500;
}
.dropdown-balance-val {
  font-size: 14.5px;
  color: #34d399;
  font-weight: 800;
}
.dropdown-deposit-btn {
  background: rgba(124, 58, 237, 0.08);
  border: 1.5px solid rgba(124, 58, 237, 0.4);
  color: #ffd200;
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.dropdown-deposit-btn:hover {
  background: rgba(124, 58, 237, 0.18);
  border-color: rgba(124, 58, 237, 0.65);
  transform: translateY(-1px);
}
