/* ============================================================
   AstroKamya™ — UNIFIED NAVBAR SYSTEM
   navbar.css — replaces all fragmented per-page nav styles
   Applies to: ALL pages via navbar.js injection

   Enhanced: Glass Pill design, micro-animations, orbital logo
   ============================================================ */

/* ── Reset any existing nav styles that might conflict ── */
#ak-unified-nav * { box-sizing: border-box; }

/* ── Announcement Bar ── */
#ak-announce-bar {
  width: 100%;
  background: linear-gradient(90deg, #1A0840 0%, #110630 50%, #1A0840 100%);
  border-bottom: 1px solid rgba(124,58,237,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 16px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #C4B5FD;
  position: relative;
  z-index: 1001;
  letter-spacing: 0.01em;
}
#ak-announce-bar .ab-icon { color: #FFB800; font-size: 14px; }
#ak-announce-bar .ab-text { color: #C4B5FD; }
#ak-announce-bar .ab-text strong { color: #F0EAFF; font-weight: 600; }
#ak-announce-bar .ab-timer {
  font-family: 'JetBrains Mono', monospace;
  color: #FFB800;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  min-width: 72px;
}
#ak-announce-bar .ab-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.3);
  color: #C4B5FD;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
#ak-announce-bar .ab-cta:hover {
  background: rgba(124,58,237,0.32);
  color: #F0EAFF;
}
#ak-announce-bar .ab-close {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: rgba(196,181,253,0.4);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
#ak-announce-bar .ab-close:hover { color: #C4B5FD; }
@media (max-width: 600px) {
  #ak-announce-bar .ab-text { display: none; }
  #ak-announce-bar { gap: 8px; font-size: 12px; }
}

/* ══════════════════════════════════════════════════
   GLASS PILL NAVBAR — Main Container
   ══════════════════════════════════════════════════ */
#ak-unified-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 20px 0;
  transition: padding 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
#ak-unified-nav.scrolled {
  padding-top: 6px;
}
/* Hide on scroll down */
#ak-unified-nav.nav-hidden {
  transform: translateY(-120%);
}

/* ── Nav Inner — The Glass Pill ── */
.ak-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  padding: 0 8px 0 20px;
  height: 54px;
  gap: 16px;
  border-radius: 100px;
  background: rgba(14, 10, 28, 0.65);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.03) inset;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}
/* ── Pill Compress on Scroll ── */
#ak-unified-nav.scrolled .ak-nav-inner {
  background: rgba(8, 4, 20, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(124,58,237,0.1) inset;
  border-color: rgba(124, 58, 237, 0.22);
  height: 46px;
  padding: 0 6px 0 16px;
  max-width: 980px;
  gap: 12px;
}

/* ── Logo ── */
.ak-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  user-select: none;
}
.ak-nav-logo-svg {
  width: 28px;
  height: 28px;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.ak-nav-logo:hover .ak-nav-logo-svg { transform: rotate(15deg) scale(1.05); }

/* ── Logo Orbital Spin — continuous subtle rotation ── */
.ak-nav-logo-svg .orbit-outer {
  transform-origin: 16px 16px;
  animation: orbitSpin 12s linear infinite;
}
.ak-nav-logo-svg .orbit-inner {
  transform-origin: 16px 16px;
  animation: orbitSpin 8s linear infinite reverse;
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}
.ak-nav-logo:hover .ak-nav-logo-svg .orbit-outer { animation-duration: 3s; }
.ak-nav-logo:hover .ak-nav-logo-svg .orbit-inner { animation-duration: 2s; }
#ak-unified-nav.scrolled .ak-nav-logo-svg { width: 24px; height: 24px; }
/* Legacy img fallback */
.ak-nav-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 0;
}
.ak-nav-logo-text {
  font-family: 'Inter', 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: font-size 0.3s ease;
}
#ak-unified-nav.scrolled .ak-nav-logo-text { font-size: 16px; }
.ak-nav-logo-text .logo-astro { color: #F0EAFF; }
.ak-nav-logo-text .logo-kamya { color: #FACC15; }
.ak-nav-logo-text sup {
  font-size: 8px;
  color: rgba(240,234,255,0.35);
  vertical-align: super;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 2px;
}

/* ── Desktop Nav Links ── */
.ak-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  position: relative;
}

/* ── Magnetic Hover Indicator ── */
.ak-hover-pill {
  position: absolute;
  height: 34px;
  border-radius: 50px;
  background: rgba(124, 58, 237, 0.10);
  border: 1px solid rgba(167, 139, 250, 0.12);
  pointer-events: none;
  opacity: 0;
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.2s ease;
  z-index: 0;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.08);
}
.ak-nav-links:hover .ak-hover-pill { opacity: 1; }

.ak-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 50px;
  font-family: 'Inter', 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(196,181,253,0.75);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
}
#ak-unified-nav.scrolled .ak-nav-link { font-size: 13.5px; padding: 6px 14px; }
.ak-nav-link svg { opacity: 0.55; transition: opacity 0.25s, stroke 0.25s; flex-shrink: 0; }
.ak-nav-link:hover { color: #F0EAFF; background: transparent; }
.ak-nav-link:hover svg { opacity: 1; }
.ak-nav-link.active {
  color: #FACC15;
  font-weight: 600;
  background: rgba(250, 204, 21, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.1);
}
.ak-nav-link.active svg { opacity: 1; color: #FACC15; }
/* Active underline dot */
.ak-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #FACC15;
}

/* ── Nav Links Entrance Animation ── */
@keyframes navLinkFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.ak-nav-link { animation: navLinkFadeIn 0.5s ease backwards; }
.ak-nav-link:nth-child(2) { animation-delay: 0.06s; }
.ak-nav-link:nth-child(3) { animation-delay: 0.12s; }
.ak-nav-link:nth-child(4) { animation-delay: 0.18s; }
.ak-nav-link:nth-child(5) { animation-delay: 0.24s; }

/* ══════════════════════════════════════════════════
   ANIMATION 1: SoulSync Matchmaking Ethereal Glow
   ══════════════════════════════════════════════════ */
.sync-target {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.type-sync {
  font-size: 13.5px;
  font-weight: 700;
  font-style: italic;
  color: rgba(240, 234, 255, 0.85);
  position: relative;
  transition: all 0.4s ease;
}
.ak-nav-link:hover .type-sync {
  background: linear-gradient(90deg, #F5D061 0%, #FFFFFF 50%, #F5D061 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldFlow 2s linear infinite;
}
@keyframes goldFlow {
  to { background-position: 200% center; }
}
.sync-data {
  position: absolute;
  top: -14px;
  right: -28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: bold;
  color: #FACC15;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.4s ease;
  pointer-events: none;
}
.ak-nav-link:hover .sync-data {
  opacity: 1;
  transform: translateY(0);
}
/* Sync Icon Sparkle */
.ak-nav-link:hover .icon-sync {
  stroke: #FACC15 !important;
  opacity: 1 !important;
  transform: scale(1.1);
}

/* ══════════════════════════════════════════════════
   ANIMATION 2: "Shop" — Quantum Decode Prismatic
   ══════════════════════════════════════════════════ */
/* Holographic shimmer — idle state */
.qd-label {
  position: relative;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(
    90deg,
    rgba(196,181,253,0.85) 0%,
    #E0D4FF 25%,
    #FACC15 50%,
    #A78BFA 75%,
    rgba(196,181,253,0.85) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: qdShimmer 4s ease-in-out infinite;
}
@keyframes qdShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hover: prismatic burst + glow */
.ak-nav-link:hover .qd-label {
  animation: qdBurst 0.6s ease forwards;
  filter: drop-shadow(0 0 6px rgba(167,139,250,0.45));
}
@keyframes qdBurst {
  0% { background-position: 0% 50%; }
  30% { background-position: 150% 50%; }
  100% { background-position: 300% 50%; }
}

/* Cipher decode micro-interaction on hover — via JS */
.qd-label[data-decoding="true"] {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  letter-spacing: 0.08em;
}

/* Subtle orbital dot that floats around the link */
.ak-nav-link:hover .qd-label::after {
  content: '✦';
  position: absolute;
  top: -6px;
  right: -10px;
  font-size: 7px;
  -webkit-text-fill-color: #FACC15;
  opacity: 0;
  animation: qdStar 0.5s 0.1s ease forwards;
}
@keyframes qdStar {
  0% { opacity: 0; transform: scale(0) rotate(0deg); }
  60% { opacity: 1; transform: scale(1.3) rotate(180deg); }
  100% { opacity: 0.8; transform: scale(1) rotate(360deg); }
}

/* ── Nav Right Actions ── */
.ak-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Primary CTA Button ── */
.ak-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 20px;
  border-radius: 50px;
  background: linear-gradient(110deg, #E5A600, #FFB800 50%, #E5A600);
  background-size: 200% 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 650;
  color: #0A0618;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s ease,
              background-position 0.4s ease;
  box-shadow: 0 2px 16px rgba(255,184,0,0.25);
  white-space: nowrap;
  letter-spacing: -0.01em;
  animation: ctaPulse 4s ease-in-out infinite;
}
/* ── CTA Breathing Pulse ── */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 2px 16px rgba(255,184,0,0.25); }
  50% { box-shadow: 0 4px 28px rgba(255,184,0,0.50), 0 0 0 3px rgba(255,184,0,0.08); }
}
.ak-nav-cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 24px rgba(255,184,0,0.4);
  background-position: right center;
  animation: none;
}
.ak-nav-cta:active { transform: scale(0.98); animation: none; }
#ak-unified-nav.scrolled .ak-nav-cta { height: 34px; padding: 0 16px; font-size: 13px; }

/* ══════════════════════════════════════════════════
   ANIMATION 3: Profile Radar Ripple
   ══════════════════════════════════════════════════ */
.ak-nav-profile-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(124,58,237,0.25);
  background: rgba(124,58,237,0.1);
  color: #C4B5FD;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  position: relative;
  flex-shrink: 0;
}
.ak-nav-profile-btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.8);
  opacity: 0;
  z-index: -1;
}
.ak-nav-profile-btn:hover {
  border-color: rgba(124,58,237,0.5);
  background: rgba(124,58,237,0.2);
  color: #F0EAFF;
}
.ak-nav-profile-btn:hover::before {
  animation: radarPulse 1.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes radarPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.ak-nav-profile-btn .ak-initials { display: none; }
.ak-nav-profile-btn.logged-in .ak-initials { display: block; }
.ak-nav-profile-btn.logged-in svg { display: none; }
.ak-nav-profile-btn.logged-in {
  background: linear-gradient(135deg, #8B5CF6, #EC4899);
  border-color: rgba(255,255,255,0.15);
}

/* ── Profile Dropdown ── */
.ak-profile-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 250px;
  background: rgba(14,8,36,0.97);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,234,255,0.04);
  backdrop-filter: blur(24px);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2000;
}
.ak-profile-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.ak-pd-header {
  padding: 16px;
  background: rgba(124,58,237,0.06);
  border-bottom: 1px solid rgba(124,58,237,0.12);
}
.ak-pd-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #F0EAFF;
  margin-bottom: 2px;
}
.ak-pd-email {
  font-size: 12px;
  color: #6E628A;
  word-break: break-all;
}
.ak-pd-tier {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255,184,0,0.1);
  border: 1px solid rgba(255,184,0,0.2);
  font-size: 11px;
  font-weight: 600;
  color: #FFB800;
  letter-spacing: 0.03em;
}
.ak-pd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #B8B0D4;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.ak-pd-item:hover { background: rgba(124,58,237,0.08); color: #F0EAFF; }
.ak-pd-item.danger { color: #F87171; }
.ak-pd-item.danger:hover { background: rgba(248,113,113,0.08); color: #FCA5A5; }
.ak-pd-item svg { opacity: 0.6; flex-shrink: 0; }
.ak-pd-divider {
  height: 1px;
  background: rgba(124,58,237,0.1);
  margin: 4px 0;
}

/* ── Sign In Button (Guest dropdown) ── */
.ak-pd-signin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 16px);
  margin: 8px auto;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #E5A600, #FFB800);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0A0618;
  border: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.2s ease;
  box-shadow: 0 2px 16px rgba(255,184,0,0.25);
  position: relative;
  overflow: hidden;
}
.ak-pd-signin-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.ak-pd-signin-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(255,184,0,0.4);
}
.ak-pd-signin-btn:hover::after { left: 100%; }
.ak-pd-signin-btn:active { transform: scale(0.98); }
.ak-pd-signin-btn svg { opacity: 0.8; flex-shrink: 0; }

/* Guest / User toggle sections */
.ak-pd-guest, .ak-pd-user { padding: 0; }

/* ── Hamburger ── */
.ak-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(124,58,237,0.08);
  border: 1.5px solid rgba(124,58,237,0.2);
  cursor: pointer;
  gap: 4px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ak-hamburger:hover { background: rgba(124,58,237,0.16); }
.ak-hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #C4B5FD;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.ak-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); width: 18px; }
.ak-hamburger.open span:nth-child(2) { opacity: 0; }
.ak-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); width: 18px; }

/* ── Mobile Drawer ── */
.ak-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  /* No backdrop-filter to prevent blur flash on mobile */
}
.ak-nav-backdrop.open { opacity: 1; pointer-events: all; }

.ak-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 88vw);
  height: 100dvh;
  height: 100vh;
  background: rgba(10, 5, 28, 0.98);
  border-left: 1px solid rgba(124,58,237,0.15);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.ak-nav-drawer.open { right: 0; }

.ak-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(124,58,237,0.1);
  flex-shrink: 0;
}
.ak-drawer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.ak-drawer-logo img { width: 24px; height: 24px; }
.ak-drawer-logo svg { width: 24px; height: 24px; flex-shrink: 0; }
.ak-drawer-logo span {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
}
.ak-drawer-logo .logo-astro { color: #F0EAFF; }
.ak-drawer-logo .logo-kamya { color: #FACC15; }
.ak-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  color: #C4B5FD;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.ak-drawer-close:hover { background: rgba(124,58,237,0.2); }

.ak-drawer-links {
  flex: 1;
  padding: 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ak-drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #B8B0D4;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.ak-drawer-link:hover { background: rgba(124,58,237,0.1); color: #F0EAFF; }
.ak-drawer-link.active { color: #FACC15; background: rgba(255,184,0,0.07); }
.ak-drawer-link svg { opacity: 0.6; flex-shrink: 0; }
.ak-drawer-link:hover svg, .ak-drawer-link.active svg { opacity: 1; }
.ak-drawer-divider {
  height: 1px;
  background: rgba(124,58,237,0.1);
  margin: 8px 0;
}
.ak-drawer-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4A3F6B;
  padding: 8px 16px 4px;
}

.ak-drawer-footer {
  padding: 16px;
  border-top: 1px solid rgba(124,58,237,0.1);
  flex-shrink: 0;
}
.ak-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  background: linear-gradient(110deg, #E5A600, #FFB800);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0A0618;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,184,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.ak-drawer-cta:active { transform: scale(0.98); }
.ak-drawer-cta-sub {
  text-align: center;
  font-size: 12px;
  color: #4A3F6B;
  margin-top: 8px;
}

/* ── Drawer Sign In Button (Mobile) ── */
.ak-drawer-signin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 16px;
  margin: 4px 0;
  border-radius: 50px;
  background: linear-gradient(135deg, #E5A600, #FFB800);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0A0618;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(255,184,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ak-drawer-signin-btn:active { transform: scale(0.97); }
.ak-drawer-guest { padding: 4px 12px; }

/* ══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .ak-nav-links { display: none; }
  .ak-hamburger { display: flex; }
  .ak-nav-cta { padding: 0 14px; font-size: 13px; }
}
/* Hide CTA on all mobile — show only hamburger + logo + profile icon */
@media (max-width: 768px) {
  .ak-nav-cta { display: none !important; }
}
@media (max-width: 480px) {
  #ak-unified-nav { padding: 6px 10px 0; }
  .ak-nav-inner { padding: 0 6px 0 14px; height: 48px; }
  .ak-nav-cta { display: none; }
  .ak-nav-logo-text { display: none; }
}
