/* ================================
   MATERIA — Landing Page Styles
   ================================ */

:root {
  --gold: #FFD700;
  --gold-dark: #FFAA00;
  --orange: #FF6B35;
  --orange-light: #F4A261;
  --bg: #0A0A0A;
  --bg2: #0F0F0F;
  --card: #141414;
  --card2: #1A1A1A;
  --border: rgba(255,255,255,0.06);
  --text: #FFFFFF;
  --text-muted: #555555;
  --text-sub: #888888;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ============ UTILITIES ============ */
.text-gold { color: var(--gold) !important; }

.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  background: rgba(255,215,0,0.08);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,215,0,0.2);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
}

/* ============ BUTTONS ============ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1A1000 !important;
  font-weight: 800;
  border: none;
  border-radius: 14px;
  padding: 12px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255,215,0,0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.4);
  color: #1A1000 !important;
}

.btn-gold.btn-xl {
  font-size: 18px;
  padding: 16px 40px;
  border-radius: 18px;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  border: 1.5px solid rgba(255,215,0,0.4);
  font-weight: 700;
  border-radius: 14px;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: rgba(255,215,0,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============ NAVBAR ============ */
#navbar {
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.95);
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-ia { color: var(--gold); }

.logo-emoji {
  font-size: 22px;
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.5));
}

.navbar-toggler { border: none; box-shadow: none !important; }

.nav-link {
  color: rgba(255,255,255,0.7) !important;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--gold) !important; }

/* ============ HERO ============ */
.hero-section {
  position: relative;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,107,53,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.06) 0%, transparent 50%),
              var(--bg);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 400px; height: 400px;
  background: rgba(255,107,53,0.12);
  top: 10%; left: -100px;
}

.hero-glow-2 {
  width: 500px; height: 500px;
  background: rgba(255,215,0,0.07);
  top: -100px; right: -100px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 16px 0;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* PHONE MOCKUP */
.phone-mockup-wrap {
  position: relative;
  display: inline-block;
}

.phone-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.phone-mockup {
  width: 280px;
  background: #1A1A1A;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  animation: phoneFloat 4s ease-in-out infinite alternate;
}

@keyframes phoneFloat {
  from { transform: translateY(0px); }
  to { transform: translateY(-12px); }
}

.phone-mockup::before {
  content: '';
  display: block;
  width: 80px; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 14px auto 0;
}

.phone-screen {
  padding: 16px 14px 24px;
}

.app-preview { display: flex; flex-direction: column; gap: 8px; }

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.app-greeting {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.app-crown { font-size: 16px; }

.app-card-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s;
}

.app-card-preview.orange { background: linear-gradient(135deg, rgba(255,107,53,0.25), rgba(255,107,53,0.1)); }
.app-card-preview.gold { background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,215,0,0.08)); }
.app-card-preview.red { background: linear-gradient(135deg, rgba(255,60,60,0.25), rgba(255,60,60,0.1)); }
.app-card-preview.purple { background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(139,92,246,0.1)); }

.card-icon { font-size: 20px; }
.card-title { font-size: 11px; font-weight: 700; color: #fff; }
.card-sub { font-size: 9px; color: rgba(255,255,255,0.4); }

.racha-bar {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 8px 12px;
  border: 1px solid var(--border);
}

.racha-bar span { font-size: 10px; color: rgba(255,255,255,0.6); display: block; margin-bottom: 6px; }

.racha-dots { display: flex; gap: 5px; }

.racha-dot {
  width: 22px; height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
}

.racha-dot.active {
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============ FEATURES ============ */
.features-section {
  padding: 100px 0;
  background: var(--bg2);
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(255,215,0,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-card:hover::before { opacity: 1; }

.featured-card {
  border-color: rgba(255,215,0,0.3);
  background: linear-gradient(135deg, #1A1500, #141414);
}

.featured-badge {
  position: absolute;
  top: -1px; right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1A1000;
  font-size: 9px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 1px;
}

.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-emoji { font-size: 24px; }

.orange-bg { background: rgba(255,107,53,0.15); }
.gold-bg { background: rgba(255,215,0,0.12); }
.red-bg { background: rgba(255,60,60,0.15); }
.purple-bg { background: rgba(139,92,246,0.15); }
.blue-bg { background: rgba(59,130,246,0.15); }
.green-bg { background: rgba(34,197,94,0.15); }

.feature-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 4px 10px;
}

/* MINI FEATURES */
.mini-feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.mini-feature:hover {
  border-color: rgba(255,215,0,0.2);
  transform: translateY(-3px);
}

.mini-emoji { font-size: 20px; }
.mini-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }

/* ============ HOW IT WORKS ============ */
.how-section {
  padding: 100px 0;
  background: var(--bg);
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,215,0,0.2);
}

.step-card-featured {
  border-color: rgba(255,215,0,0.3);
  background: linear-gradient(135deg, #1A1500, #141414);
  box-shadow: 0 0 40px rgba(255,215,0,0.05);
}

.step-num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.step-num.gold { color: var(--gold); }

.step-icon { font-size: 40px; margin-bottom: 16px; display: block; }

.step-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ============ NAVBAR LOGO ============ */
.nav-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}

/* ============ SCREENSHOTS ============ */
.screenshots-section {
  padding: 100px 0;
  background: var(--bg2);
  overflow: hidden;
}

/* Phone mockup for carousel */
.mockup-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px 10px 0;
}

.mockup-shell {
  width: 220px;
  background: #1C1C1E;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 70px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.swiper-slide-active .mockup-shell {
  transform: scale(1.04);
  box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,215,0,0.15);
}

.mockup-notch {
  width: 80px;
  height: 22px;
  background: #1C1C1E;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mockup-screen {
  margin-top: -22px;
}

.mockup-screen img {
  width: 100%;
  display: block;
  border-radius: 0 0 34px 34px;
}

.slide-caption {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin: 0;
}

.screenshotsSwiper {
  padding: 20px 20px 60px !important;
}

.swiper-button-prev, .swiper-button-next {
  color: var(--gold) !important;
  background: rgba(255,215,0,0.1);
  width: 44px !important; height: 44px !important;
  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.2);
  top: 45% !important;
}

.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 16px !important;
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,0.2) !important;
  width: 8px !important;
  height: 8px !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ============ UNIVERSIDADES ============ */
.unis-section {
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}

.uni-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 24px;
  min-width: 110px;
  transition: border-color 0.3s;
  cursor: default;
}

.uni-logo-item:hover {
  border-color: rgba(255,215,0,0.25);
}

.uni-logo-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s;
}

.uni-logo-item:hover img {
  filter: grayscale(0%);
}

.uni-logo-item span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ============ PRICING ============ */
.pricing-section {
  padding: 100px 0;
  background: var(--bg2);
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pricing-card-featured {
  border-color: rgba(255,215,0,0.4);
  background: linear-gradient(135deg, #1A1500, #141414);
  box-shadow: 0 0 60px rgba(255,215,0,0.08);
  position: relative;
}

.pricing-popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1A1000;
  font-size: 10px;
  font-weight: 900;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.pricing-header { margin-bottom: 28px; }

.pricing-plan-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pricing-price {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-top: 8px;
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-annual {
  font-size: 12px;
  color: rgba(255,215,0,0.6);
  margin-top: 6px;
}

.pricing-trial {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li.text-muted {
  color: var(--text-muted) !important;
}

.pricing-features li i {
  font-size: 15px;
  flex-shrink: 0;
}

.pricing-features .bi-x-circle-fill { color: #333 !important; }

/* ============ CTA ============ */
.cta-section {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-crown {
  font-size: 56px;
  display: block;
  margin-bottom: 16px;
  animation: crownFloat 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px rgba(255,215,0,0.4));
}

@keyframes crownFloat {
  from { transform: translateY(0) rotate(-3deg); }
  to { transform: translateY(-10px) rotate(3deg); }
}

.cta-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
}

.cta-sub {
  font-size: 16px;
  color: var(--text-sub);
  margin-top: 12px;
}

/* ============ FOOTER ============ */
.footer-section {
  padding: 40px 0;
  background: #050505;
  border-top: 1px solid var(--border);
}

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

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 12px;
  color: #333;
  margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 16px; }
  .phone-mockup { width: 240px; }
  .hero-section { text-align: center; }
  .hero-sub { margin: 0 auto; }
  .badge-pill { font-size: 11px; }
  .hero-stats { justify-content: center; }
  .d-flex.flex-wrap { justify-content: center; }
  .footer-links { gap: 14px; }
}

/* ============ FAQ ============ */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(255,215,0,0.25);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.faq-icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ============ MOBILE BANNER ============ */
.mobile-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 12px 16px;
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.mobile-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-banner-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.mobile-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-banner-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.mobile-banner-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.mobile-banner-btn {
  font-size: 13px !important;
  padding: 8px 18px !important;
  border-radius: 10px !important;
  flex-shrink: 0;
  white-space: nowrap;
}

.mobile-banner-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  flex-shrink: 0;
}

.mobile-banner-close:hover { color: #fff; }

@media (max-width: 768px) {
  .mobile-banner { display: block; }
  body { padding-bottom: 80px; }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2A2A2A; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3A3A3A; }
