/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
  --gold: #FFD700;
  --gold-dim: rgba(255, 215, 0, 0.12);
  --gold-mid: rgba(255, 215, 0, 0.25);
  --gold-strong: rgba(255, 215, 0, 0.5);
  --bg: #000;
  --text-primary: #fff;
  --text-muted: #ddd;
  --text-dim: #aaa;
  --card-bg: rgba(0, 0, 0, 0.6);
  --card-border: rgba(255, 215, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --nav-height: 70px;
  --transition-base: all 0.25s ease;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Orbitron', sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===========================
   BACKGROUND LAYERS
=========================== */
.video-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -2;
}

#particles-js {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ===========================
   LAYOUT
=========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--gold);
  padding: 0 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(6px);
}

.logo-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo {
    height: 500px;
    width: auto;
    margin-top: 110px;
    margin-left: -40px;
    display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.nav-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid rgba(255, 215, 0, 0.4);
  color: var(--gold);
  cursor: pointer;
  padding: 8px 10px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  font-size: 22px;
  border-radius: 8px;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus {
  background: rgba(255, 215, 0, 0.12);
  border-color: var(--gold);
  outline: none;
}

/* ===========================
   HERO
=========================== */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  color: var(--gold);
  font-size: 2.6rem;
  text-shadow: 0 0 15px var(--gold);
  margin-bottom: 10px;
  line-height: 1.2;
}

.tagline {
  color: var(--text-primary);
  margin-bottom: 18px;
  text-shadow: 0 0 10px var(--gold);
  font-size: 1.2rem;
}

.btn-glow {
  background: var(--gold);
  color: #000;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--gold), 0 0 25px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  min-height: 50px;
  font-family: 'Orbitron', sans-serif;
  transition: var(--transition-base);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--gold), 0 0 40px rgba(255, 215, 0, 0.6);
}

/* ===========================
   SECTIONS
=========================== */
.section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 40px 20px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.section h2 {
  color: var(--gold);
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px var(--gold);
}

.section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* ===========================
   OFFER SECTION
=========================== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0;
}

.offer-tier {
  padding: 25px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-mid);
  text-align: left;
}

.offer-tier h3 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.referral-note {
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-mid);
  color: var(--text-muted);
}

/* ===========================
   AIRDROP SECTION
=========================== */
.airdrop-section .airdrop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  align-items: start;
  margin-top: 25px;
}

.airdrop-phase {
  padding: 25px;
  border-radius: var(--radius-md);
  text-align: left;
  height: 100%;
}

.airdrop-phase h3 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.airdrop-phase ul {
  list-style: disc;
  margin-left: 20px;
  color: var(--text-muted);
}

.airdrop-phase li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.airdrop-note {
  margin-top: 25px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--card-border);
  text-align: left;
}

.airdrop-note h4 {
  color: var(--gold);
  margin-bottom: 10px;
}

.airdrop-note p {
  color: var(--text-muted);
  margin: 0;
}

/* Glass utility */
.glass {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-strong);
}

/* ===========================
   ROADMAP
=========================== */
.roadmap-wrap {
  position: relative;
  height: 1400px;
  max-width: 1100px;
  margin: 0 auto;
}

.roadmap-road {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.roadmap-road .road-fill {
  fill: none;
  stroke: #0e0e0e;
  stroke-width: 110;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: opacity 300ms ease-out;
}

.roadmap-road .road-center {
  fill: none;
  stroke: var(--gold);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 18 18;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.55));
}

.mile {
  position: absolute;
  width: min(380px, 44vw);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 215, 0, 0.1);
  color: var(--text-muted);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mile h3 {
  color: var(--gold);
  margin: 4px 0 10px;
  font-size: 1.3rem;
}

.mile p {
  margin: 0;
  line-height: 1.55;
  font-size: 1rem;
}

.mile:hover {
  transform: translate(-50%, -50%) translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55), 0 0 28px rgba(255, 215, 0, 0.18);
  border-color: rgba(255, 215, 0, 0.55);
}

.mile .pin {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(ellipse at 30% 30%, #FFE680, #FFD700 50%, #B68B00 100%);
  color: #111;
  font-weight: 800;
  border: 2px solid #291f00;
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.55), inset 0 0 8px rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
}

.mile-1 { left: 82%; top: 12%; }
.mile-2 { left: 22%; top: 34%; }
.mile-3 { left: 78%; top: 60%; }
.mile-4 { left: 18%; top: 86%; }

.roadmap-section .mile {
  opacity: 0;
  transform: translate(-50%, -40%) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.25s ease;
}

.roadmap-section .mile.in-view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Mobile roadmap – hidden on desktop */
.roadmap-mobile {
  display: none;
  list-style: none;
  max-width: 780px;
  margin: 32px auto 0;
  padding: 0 14px;
}

.roadmap-mobile li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: start;
  padding: 20px 0;
  border-left: 2px dashed rgba(255, 215, 0, 0.35);
  margin-left: 22px;
  position: relative;
}

.roadmap-mobile li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.roadmap-mobile span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 30% 30%, #FFE680, #FFD700 50%, #B68B00 100%);
  color: #111;
  font-weight: 800;
  border: 2px solid #291f00;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.roadmap-mobile h4 {
  color: var(--gold);
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.roadmap-mobile p {
  color: var(--text-muted);
  margin: 0;
  font-size: 1rem;
}

/* ===========================
   FAQ SECTION
=========================== */
.faq-section {
  text-align: left;
}

.faq-section h2 {
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  color: var(--text-muted);
}

.faq-question {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: text-shadow 0.2s ease;
}

.faq-question:hover,
.faq-question:focus {
  color: var(--gold);
  text-shadow: 0 0 10px var(--gold);
  outline: none;
}

.faq-answer {
  font-size: 1.1rem;
  color: #bbb;
  line-height: 1.6;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-base);
}

.faq-answer a:hover {
  text-shadow: 0 0 8px var(--gold);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  text-align: center;
  margin: 40px 0;
  color: var(--text-dim);
  padding: 0 20px;
}

/* ===========================
   UTILITY
=========================== */
.hide-navbar {
  display: none !important;
}

.navbar.show-nav {
  transform: translateY(0);
  transition: transform 0.45s ease-in-out;
}

.navbar.hide-nav {
  transform: translateY(-190%);
  transition: transform 0.45s ease-in-out;
}

/* ===========================
   RESPONSIVE – TABLET
=========================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .mile {
    width: min(320px, 50vw);
  }
}

/* ===========================
   RESPONSIVE – MOBILE
=========================== */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .navbar {
    padding: 0 15px;
    overflow: visible;
  }

  .nav-logo {
    height: 40px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1500;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 8px 0;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1.1rem;
    min-height: 44px;
  }

  .hero {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .tagline {
    font-size: 1rem;
  }

  .btn-glow {
    padding: 12px 24px;
    font-size: 1rem;
    min-height: 44px;
  }

  .section {
    margin: 60px auto;
    padding: 30px 15px;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .section p {
    font-size: 1rem;
  }

  .offer-grid,
  .airdrop-section .airdrop-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Hide the desktop SVG road and floating milestone cards */
  .roadmap-wrap {
    display: none;
  }

  /* Show the mobile vertical timeline */
  .roadmap-mobile {
    display: block;
  }

  .faq-section {
    margin: 60px auto;
    padding: 30px 15px;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-item {
    padding: 15px;
    margin-bottom: 15px;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 1rem;
  }
}

/* ===========================
   CHATBOT STYLES — VCOIN Amie
=========================== */

/* Floating chat icon */
#chat-icon {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5);
  animation: pulse-ring 2.5s ease-out infinite;
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

#chat-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Chat window */
#chatbox {
  display: none;
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 340px;
  max-height: 560px;
  background: rgba(6, 6, 6, 0.97);
  color: #fff;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 18px;
  overflow: hidden;
  z-index: 9998;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 30px rgba(255,215,0,0.08);
  flex-direction: column;
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#chatbox.open {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Header */
#chat-header {
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(255,215,0,0.13), rgba(255,165,0,0.07));
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.amie-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255,215,0,0.4);
}

.amie-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.amie-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #FFD700;
  letter-spacing: 0.05em;
}

.amie-status {
  font-size: 0.72rem;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Orbitron', sans-serif;
}

.amie-status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: blink-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Chat body */
#chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 340px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,215,0,0.2) transparent;
}

#chat-body::-webkit-scrollbar { width: 4px; }
#chat-body::-webkit-scrollbar-track { background: transparent; }
#chat-body::-webkit-scrollbar-thumb {
  background: rgba(255,215,0,0.25);
  border-radius: 4px;
}

/* Message rows */
.msg-row {
  display: flex;
  animation: fadeSlideUp 0.28s ease;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bot-row  { justify-content: flex-start; }
.user-row { justify-content: flex-end; }

/* Bubbles */
.msg-bubble {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 0.83rem;
  line-height: 1.55;
  font-family: 'Orbitron', sans-serif;
  word-break: break-word;
}

.bot-bubble {
  background: rgba(255, 215, 0, 0.07);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-bottom-left-radius: 4px;
  color: #e0e0e0;
}

.user-bubble {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  border-bottom-right-radius: 4px;
  font-weight: 600;
}

/* Typing indicator */
.typing-bubble {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.6);
  animation: bounce-dot 1.2s ease-in-out infinite;
}
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce-dot {
  0%, 60%, 100% { transform: translateY(0); }
  30%           { transform: translateY(-7px); }
}

/* Payment report form */
#report-form {
  margin: 0;
  padding: 0 12px 8px;
  display: none;
  flex-direction: column;
  gap: 7px;
}

.report-inner {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px;
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 12px;
}

.report-inner h4 {
  color: #FFD700;
  font-size: 0.82rem;
  font-family: 'Orbitron', sans-serif;
  margin: 0 0 2px;
}

.report-inner input,
.report-inner textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 8px;
  color: #fff;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-family: 'Orbitron', sans-serif;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.report-inner input:focus,
.report-inner textarea:focus {
  border-color: rgba(255,215,0,0.5);
}

.report-inner textarea {
  height: 58px;
  resize: none;
}

.report-note {
  font-size: 0.72rem;
  color: #aaa;
  font-family: 'Orbitron', sans-serif;
  line-height: 1.4;
}

.submit-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s;
}

.submit-btn:hover { opacity: 0.85; }

/* Input footer */
#chat-footer {
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(0,0,0,0.5);
  flex-shrink: 0;
}

#chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 10px;
  color: #fff;
  padding: 9px 12px;
  font-size: 0.82rem;
  font-family: 'Orbitron', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: auto;
}

#chat-input:focus {
  border-color: rgba(255, 215, 0, 0.6);
  background: rgba(255,255,255,0.07);
}

#chat-input::placeholder { color: rgba(255,255,255,0.3); }
#chat-input:disabled { opacity: 0.5; }

#send-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  padding: 0;
  transition: opacity 0.2s, transform 0.15s;
}

#send-btn:hover:not(:disabled) { transform: scale(1.08); }
#send-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ===========================
   RESPONSIVE – SMALL MOBILE
=========================== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .nav-logo {
    height: 36px;
  }

  .container {
    padding: 0 15px;
  }

  .roadmap-mobile li {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .roadmap-mobile span {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .roadmap-mobile h4 {
    font-size: 1rem;
  }

  .roadmap-mobile p {
    font-size: 0.9rem;
  }

  .btn-glow {
    padding: 16px 24px;
    font-size: 1rem;
    min-height: 50px;
  }

  #chatbox {
    width: calc(100vw - 24px);
    right: 12px;
    bottom: 84px;
  }

  #chat-icon {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ===========================
   REDUCED MOTION
=========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
