/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES (iOS Liquid Glass)
   ========================================================================== */
:root {
  --bg-base: #f5f5f7;
  --text-main: #1d1d1f;
  --text-muted: #86868b;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  
  /* Liquid Glass Light Properties */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.95);

  --radius-pill: 100px;
  --radius-card: 22px;
  --radius-inner: 16px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', var(--font-sans);
}

/* ==========================================================================
   RESET & SYSTEM BASICS
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  background-color: var(--bg-base);
  color: var(--text-main);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
  padding: 0 16px 120px 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-share-nav svg,
.btn-share-nav span {
  pointer-events: none;
}


/* ==========================================================================
   BACKGROUND ATMOSPHERE & TEXTURE
   ========================================================================== */
.texture {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.03"/%3E%3C/svg%3E');
  pointer-events: none;
  z-index: 999;
}

.glow {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 247, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: floatOrb 16s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob1 { width: 320px; height: 320px; background: #ffffff; top: 8%; left: -60px; }
.blob2 { width: 380px; height: 380px; background: #e2e8f0; bottom: 20%; right: -80px; animation-delay: -6s; }

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 40px) scale(1.05); }
  100% { transform: translate(-20px, 60px) scale(0.95); }
}

/* ==========================================================================
   CONTAINER WRAPPERS
   ========================================================================== */
.hero,
.app-promo-card,
.highlight-wrapper,
.ctas,
.action-grid,
.ebooks,
.bio-section,
.footer {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 10;
}

/* ==========================================================================
   HERO SECTION & VERIFIED BADGE
   ========================================================================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 48px;
  margin-bottom: 20px;
}

.portrait-wrap {
  position: relative;
  margin-bottom: 16px;
}

.portrait {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  padding: 4px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.portrait img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.verified-badge-btn {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 113, 227, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--accent);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.verified-badge-btn svg {
  width: 24px;
  height: 24px;
}

.verified-badge-btn:hover {
  transform: scale(1.12);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.social-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.social-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.chip-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.hero .role {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 10px;
}

.scroll-btn {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.scroll-btn:hover {
  color: var(--text-main);
}

.scroll-btn svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   APP PROMO CARD (ELIO)
   ========================================================================== */
.app-promo-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-card);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  margin-bottom: 14px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}

.app-promo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.app-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  background-color: #000000;
}

.app-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-details {
  flex: 1;
  min-width: 0;
}

.app-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.app-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.app-btn-get {
  background: #e5e5ea;
  color: var(--accent);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.app-btn-get:hover {
  background: var(--accent);
  color: #ffffff;
}

/* ==========================================================================
   HIGHLIGHT CARDS (PRAIRIE GIRL & ECLAT)
   ========================================================================== */
.highlight-wrapper {
  margin-bottom: 12px;
}

.highlight-card {
  display: block;
  position: relative;
  min-height: 165px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  background-color: #1a1a1c;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.highlight-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-card:hover .highlight-bg {
  transform: scale(1.04);
}

.highlight-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    180deg, 
    rgba(0, 0, 0, 0.1) 0%, 
    rgba(0, 0, 0, 0.45) 50%, 
    rgba(12, 12, 14, 0.85) 100%
  );
  backdrop-filter: blur(0.5px);
}

.highlight-content {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 165px;
  color: #ffffff;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  width: fit-content;
  margin-bottom: 8px;
}

.dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 8px #34c759;
  animation: pulseDot 1.6s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.5; }
}

.highlight-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.highlight-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.highlight-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
}

.highlight-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.highlight-card:hover .highlight-cta svg:last-child {
  transform: translateX(4px);
}

/* ==========================================================================
   PRIMARY CTAs
   ========================================================================== */
.ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.cta {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: var(--radius-card);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.cta-icon svg {
  width: 22px;
  height: 22px;
}

.cta-text {
  flex: 1;
}

.cta-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}

.cta-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.cta-sub b {
  color: var(--text-main);
  font-weight: 500;
}

.cta-arrow {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: transform 0.2s, color 0.2s;
}

.cta-arrow svg {
  width: 18px;
  height: 18px;
}

.cta:hover .cta-arrow {
  transform: translateX(4px);
  color: var(--text-main);
}

/* ==========================================================================
   ACTION GRID & PROMO BADGE FIX
   ========================================================================== */
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.action-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 12px;
  min-height: 105px;
  border-radius: var(--radius-inner);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.action-icon {
  color: var(--text-main);
  margin-bottom: 8px;
}

.action-icon svg {
  width: 22px;
  height: 22px;
}

.action-text {
  display: flex;
  flex-direction: column;
}

.action-title {
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-main);
}

.action-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Card Khusus Gaming */
.btn-gaming {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.btn-gaming .action-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.btn-gaming .action-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 2;
}

.btn-gaming .action-icon,
.btn-gaming .action-text {
  position: relative;
  z-index: 3;
}

.btn-gaming .action-icon { color: #ffffff; }
.btn-gaming .action-title { color: #ffffff; }
.btn-gaming .action-sub { color: rgba(255, 255, 255, 0.85); }

/* Badge Promo Gaya Kapsul Apple */
.sponsor-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 113, 227, 0.4);
  pointer-events: none;
}

/* ==========================================================================
   E-BOOKS CAROUSEL
   ========================================================================== */
.ebooks {
  margin-bottom: 32px;
}

.ebooks-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
  padding: 0 4px;
}

.ebooks-head h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.ebooks-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ebooks-sub.dismissed {
  opacity: 0.35;
}

.scroll-nav {
  display: flex;
  gap: 6px;
}

.scroll-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: background 0.2s;
}

.scroll-nav button:hover {
  background: #ffffff;
}

.scroll-nav button svg {
  width: 14px;
  height: 14px;
}

.ebook-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px 4px;
  cursor: grab;
  scrollbar-width: none;
}

.ebook-track::-webkit-scrollbar {
  display: none;
}

.ebook-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.ebook-card {
  flex: 0 0 210px;
  scroll-snap-align: start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-inner);
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.ebook-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  background-color: #e5e5ea;
}

.ebook-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ebook-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.ebook-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ebook-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ebook-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

.ebook-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--text-main);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.ebook-cta:hover {
  opacity: 0.85;
}

.ebook-cta svg {
  width: 12px;
  height: 12px;
}

.ebook-more {
  flex: 0 0 100px;
  scroll-snap-align: start;
  background: var(--glass-bg);
  border: 1px dashed var(--glass-border);
  border-radius: var(--radius-inner);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d1d6;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.dot.active {
  width: 18px;
  border-radius: 10px;
  background: var(--text-main);
}

/* ==========================================================================
   BIO SECTION
   ========================================================================== */
.bio-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  margin-bottom: 36px;
}

.bio-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.bio-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.bio-avatar svg {
  width: 22px;
  height: 22px;
}

.bio-name {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
}

.verified svg {
  width: 10px;
  height: 10px;
  stroke-width: 3;
}

.bio-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.bio-text p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #48484a;
  margin-bottom: 10px;
}

.bio-text p:last-child {
  margin-bottom: 20px;
}

.socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: #ffffff;
  color: var(--accent);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding-bottom: 30px;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.footer-left h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-left p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-right {
  text-align: right;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.location-time {
  margin-top: 4px;
}

.live-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-weight: 600;
  color: var(--text-main);
}

.time-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 6px #34c759;
  animation: pulseDot 2s infinite;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 16px;
}

/* ==========================================================================
   BOTTOM NAVIGATION BAR (FLOATING LIQUID GLASS)
   ========================================================================== */
.bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 380px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  border-radius: var(--radius-pill);
  z-index: 100;
}

.glass-lens {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.2s ease;
}

.nav-item svg {
  width: 22px;
  height: 22px;
}

.nav-item span {
  font-size: 0.65rem;
  font-weight: 500;
}

.nav-item:hover {
  color: var(--text-main);
  transform: translateY(-1px);
}

.nav-item.active {
  color: var(--accent);
}

/* ==========================================================================
   NOTIFY TOAST PROMPT (CONFIRMATION CARD)
   ========================================================================== */
.notify-toast {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  width: 90%;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), inset 0 1px 1px #ffffff;
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.notify-toast.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.notify-toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 113, 227, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notify-toast-icon svg {
  width: 18px;
  height: 18px;
}

.notify-toast-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.notify-toast-text strong {
  font-size: 0.82rem;
  color: var(--text-main);
  line-height: 1.2;
}

.notify-toast-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.notify-toast-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.toast-btn-allow {
  background: var(--text-main);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.toast-btn-allow:hover {
  opacity: 0.85;
}

.toast-btn-dismiss {
  background: none;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 4px;
  line-height: 1;
}

.toast-btn-dismiss:hover {
  color: var(--text-main);
}

/* ==========================================================================
   SCROLL REVEAL & VFX GLITCH
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.vfx-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 10000;
}

body.vfx-active {
  animation: screenGlitch 0.4s ease forwards;
}

@keyframes screenGlitch {
  0% { filter: invert(0) hue-rotate(0deg); }
  25% { filter: invert(1) hue-rotate(90deg); transform: translate(-2px, 2px); }
  50% { filter: invert(0) hue-rotate(180deg); transform: translate(2px, -2px); }
  75% { filter: invert(0.8) hue-rotate(270deg); transform: translate(-1px, -1px); }
  100% { filter: invert(0) hue-rotate(360deg); transform: translate(0, 0); }
}