/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root{
  --bg:#0b1020;
  --glass-1: rgba(255,255,255,0.06);
  --glass-2: rgba(255,255,255,0.04);
  --accent: #7dd3fc;
  --muted: #9aa4b2;
}
html{
  height:100%; 
  min-height:100%;
  overflow-x:hidden;
}
body{
  min-height:100%;
  margin:0;
  background: #05060a;
  color: #e6eef8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing:antialiased;
  font-size: 16px;
  /* iOS Safari scroll fix */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

/* Fixed background gradient that doesn't repeat */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 100% 80% at 10% 5%, rgba(125,211,252,0.08), transparent 50%),
              linear-gradient(180deg, #071021 0%, #05060a 100%);
  z-index: -1;
  pointer-events: none;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

.container{
  display:flex;
  gap:20px;
  padding:24px;
  min-height:100vh;
  min-height:100dvh; /* dynamic viewport height for mobile */
  height:auto;
  box-sizing:border-box;
}

.glass{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
          backdrop-filter: blur(8px) saturate(120%);
  border-radius: 12px;
}

.sidebar{width:auto; min-width:70px; max-width:280px; padding:0; overflow-y:auto; overflow-x:hidden; scrollbar-width:none; -ms-overflow-style:none; transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);}
/* Dev-only preview: add `preview-sidebar-hover` class on html to test collapsed hover */
@media (min-width: 900px) {
  html.preview-sidebar-hover .sidebar{
    width:64px;
    padding:10px 6px;
    transition: width 200ms ease, padding 120ms ease;
    overflow: visible;
    min-width:64px;
  }
  html.preview-sidebar-hover .sidebar .brand div,
  html.preview-sidebar-hover .sidebar .module-item .label{
    display:none;
  }
  html.preview-sidebar-hover .sidebar .module-item svg{
    display:none;
  }
  html.preview-sidebar-hover .sidebar .module-item{
    justify-content:center; padding-left:6px; padding-right:6px;
  }
  html.preview-sidebar-hover .sidebar:hover{
    width:260px; padding:18px;
  }
  html.preview-sidebar-hover .sidebar .module-item img{ width:32px; height:32px; border-radius:50%; object-fit:cover; }
  html.preview-sidebar-hover .sidebar:hover .module-item img{ width:36px; height:36px; }
  html.preview-sidebar-hover .sidebar .module-item:hover{ background:transparent; padding-left:6px; padding-right:6px; }
}

.sidebar::-webkit-scrollbar{display:none;}
.main{flex:1 1; padding:18px; display:flex; flex-direction:column; gap:16px; overflow-y:auto; overflow-x:hidden; min-height:0; scrollbar-width:none; -ms-overflow-style:none; -webkit-overflow-scrolling:touch;}
.main::-webkit-scrollbar{display:none;}
.topbar{height:64px; display:flex; align-items:center; justify-content:space-between; padding:0 20px}
.brand{display:flex; align-items:center; gap:12px}
.brand img{height:36px}
.module-list{display:flex; flex-direction:column; gap:12px; margin-top:18px}
.module-item{display:flex; align-items:center; gap:12px; padding:10px; cursor:pointer; border-radius:10px}
.module-item img{height:36px; width:36px; object-fit:cover; border-radius:8px}
.module-item:hover{background:rgba(255,255,255,0.02)}
.module-item.active{background:linear-gradient(90deg, rgba(125,211,252,0.06), rgba(125,211,252,0.02)); box-shadow:0 4px 18px rgba(125,211,252,0.06)}

.card{padding:18px; border-radius:14px; margin-bottom:24px}

/* Remove chatbox from globals - now handled inline */
.chat-header{display:flex; align-items:center; justify-content:space-between; padding:10px}
.chat-messages{flex:1 1; overflow:auto; padding:12px; display:flex; flex-direction:column; gap:10px}
.chat-input{display:flex; gap:8px; padding:10px}
.msg{padding:10px; border-radius:12px; max-width:80%}
.msg.user{align-self:flex-end; background:linear-gradient(90deg,#1f2937,#111418)}
.msg.agent{align-self:flex-start; background:linear-gradient(90deg, rgba(125,211,252,0.08), rgba(125,211,252,0.03))}

/* Buttons */
.btn-primary{
  padding:8px 16px;
  background:var(--accent);
  color:#032033;
  border:none;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.2s;
}
.btn-primary:hover{
  background:#5fc3f0;
  box-shadow:0 4px 12px rgba(125,211,252,0.3);
}
.btn-secondary{
  padding:8px 16px;
  background:rgba(255,255,255,0.05);
  color:var(--accent);
  border:1px solid rgba(125,211,252,0.3);
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.2s;
}
.btn-secondary:hover{
  background:rgba(125,211,252,0.1);
}

/* Tabs */
.tab, .tab-active{
  padding:10px 20px;
  background:transparent;
  border:none;
  color:var(--muted);
  cursor:pointer;
  font-weight:600;
  border-bottom:2px solid transparent;
  transition:all 0.2s;
}
.tab:hover{
  color:#e6eef8;
  background:rgba(255,255,255,0.02);
}
.tab-active{
  color:var(--accent);
  border-bottom-color:var(--accent);
}

/* Search Input */
.search-input{
  padding:10px 16px;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:8px;
  color:inherit;
  font-size:14px;
  width:300px;
  transition:all 0.2s;
}
.search-input:focus{
  outline:none;
  border-color:var(--accent);
  background:rgba(255,255,255,0.04);
}
.search-input::placeholder{
  color:var(--muted);
}

/* Table */
.vessel-table{
  width:100%;
  border-collapse:collapse;
}
.vessel-table th{
  text-align:left;
  padding:12px;
  border-bottom:2px solid rgba(255,255,255,0.1);
  color:var(--muted);
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.5px;
}
.vessel-table td{
  padding:14px 12px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.vessel-table tbody tr{
  transition:background 0.2s;
}
.vessel-table tbody tr:hover{
  background:rgba(125,211,252,0.05);
}

/* Generic Badge Styles - High Contrast */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-primary {
  background: rgba(59, 130, 246, 0.25);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-success {
  background: rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.25);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-error {
  background: rgba(239, 68, 68, 0.25);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-info {
  background: rgba(139, 92, 246, 0.25);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Status Badges */
.status-badge{
  display:inline-block;
  padding:4px 12px;
  border-radius:12px;
  font-size:12px;
  font-weight:600;
}
.status-active{
  background:rgba(16,185,129,0.15);
  color:#10b981;
}
.status-idle{
  background:rgba(245,158,11,0.15);
  color:#f59e0b;
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

@keyframes radarSweep {
  0% { transform: rotate(0deg); opacity: 0.3; }
  50% { opacity: 0.15; }
  100% { transform: rotate(360deg); opacity: 0.3; }
}

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

@keyframes radarPulse {
  0% { opacity: 0.3; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(2); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Military map overlay */
.military-overlay {
  filter: hue-rotate(90deg) saturate(2) brightness(0.7);
  mix-blend-mode: screen;
}

/* Hide scrollbar while keeping functionality */
.hide-scrollbar {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Terminal scrollbar hiding */
.terminal-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.terminal-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* Rounded logos */
img.rounded-logo {
  border-radius: 50%;
  object-fit: cover;
}

.card {
  animation: fadeIn 0.3s ease-out;
}

/* Themed scrollbars for modern browsers */
:root{
  --scrollbar-track: rgba(255,255,255,0.02);
  --scrollbar-thumb: rgba(125,211,252,0.12);
  --scrollbar-thumb-hover: rgba(125,211,252,0.20);
}

/* Global scrollbar styling for Webkit (Chrome, Edge, Safari) */
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: var(--scrollbar-track); border-radius: 10px; }
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--scrollbar-thumb), var(--scrollbar-thumb-hover));
  border-radius: 10px;
  border: 2px solid transparent; /* create small padding illusion */
  background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:hover { background: var(--scrollbar-thumb-hover); }

/* Firefox */
* { scrollbar-width: thin; scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track); }

/* Make scrollbars slightly transparent on top of dark background to blend */
.main::-webkit-scrollbar-thumb { background: rgba(125,211,252,0.14); }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(125,211,252,0.12); }

/* Keep the hide-scrollbar utility */
.hide-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }

/* DockSidebar: always hide scrollbar completely - NEVER show */
.dock-sidebar, .sidebar, aside.sidebar { 
  scrollbar-width: none !important; 
  -ms-overflow-style: none !important; 
}
.dock-sidebar::-webkit-scrollbar, .sidebar::-webkit-scrollbar, aside.sidebar::-webkit-scrollbar { 
  display: none !important; 
  width: 0 !important;
  height: 0 !important;
}

/* Reduce visual noise on macOS by nudging scrollbar to thin */
@supports (-webkit-touch-callout: none) {
  *::-webkit-scrollbar { width: 8px; height: 8px; }
}

/* Default: hide scrollbars visually but keep scroll functional. 
   Show a thin theme-colored scrollbar on hover or keyboard focus for accessibility. */
.main, .chat-messages {
  scrollbar-width: none; /* Firefox - hides */
  -ms-overflow-style: none; /* IE/Edge */
}
.main::-webkit-scrollbar, .chat-messages::-webkit-scrollbar {
  width: 0; height: 0; /* WebKit browsers - hide */
}

/* Expose a thin themed scrollbar while hovering or when keyboard focus is inside to aid UX/accessibility */
/* NOTE: Sidebar NEVER shows scrollbar - only main content and chat */
.main:hover::-webkit-scrollbar, .main:focus-within::-webkit-scrollbar,
.chat-messages:hover::-webkit-scrollbar, .chat-messages:focus-within::-webkit-scrollbar {
  width: 8px; height: 8px;
}
.main:hover, .main:focus-within, .chat-messages:hover, .chat-messages:focus-within {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

/* Provide fallback visual when scrollbars are visible on platforms (e.g., Windows) */
.main:hover::-webkit-scrollbar-thumb, .chat-messages:hover::-webkit-scrollbar-thumb {
  background: rgba(125,211,252,0.14);
}

/* immersive CSS fallback used when native fullscreen is blocked */
html.phoenix-immersive-fullscreen, body.phoenix-immersive-fullscreen {
  height: 100vh !important;
  width: 100vw !important;
  overflow: hidden !important;
}

html.phoenix-immersive-fullscreen .main, body.phoenix-immersive-fullscreen .main {
  height: calc(100vh - 64px) !important;
  overflow: auto !important;
}

/* Hide peripheral chrome in immersive fallback */
html.phoenix-immersive-fullscreen .sidebar,
body.phoenix-immersive-fullscreen .sidebar,
html.phoenix-immersive-fullscreen .topbar,
body.phoenix-immersive-fullscreen .topbar,
html.phoenix-immersive-fullscreen .brand,
body.phoenix-immersive-fullscreen .brand,
html.phoenix-immersive-fullscreen .chat-floating,
body.phoenix-immersive-fullscreen .chat-floating {
  display: none !important;
}

html.phoenix-immersive-fullscreen .main {
  width: calc(100vw - 0px) !important;
  margin-left: 0 !important;
  padding: 18px !important;
}

/* Mobile / iOS improvements for scrolling in immersive mode */
html.phoenix-immersive-fullscreen .main,
body.phoenix-immersive-fullscreen .main {
  -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
  overscroll-behavior: contain; /* prevent overscroll interactions */
  touch-action: pan-y; /* allow vertical pan */
  /* Use svh/dvh to work around mobile URL bar sizing */
  height: calc(100svh - 64px) !important;
  min-height: calc(100dvh - 64px) !important;
}

/* Keep the overlay above other elements */
#phoenix-fullscreen-overlay { z-index: 99999; }

/* ==================== */
/* Safari/iOS Global Fixes */
/* ==================== */

/* Fix Safari 100vh bug */
@supports (-webkit-touch-callout: none) {
  .container {
    min-height: -webkit-fill-available;
  }
}

/* Mobile responsive base */
@media (max-width: 768px) {
  html {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  
  body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .container {
    display: block;
    padding: 0;
    min-height: auto;
    height: auto;
    overflow: visible;
  }
  
  .sidebar {
    display: none !important;
  }
  
  .main {
    display: block;
    padding: 12px;
    padding-bottom: 100px; /* space for bottom nav + safe area */
    min-height: auto;
    height: auto;
    overflow: visible;
    border-radius: 0;
    border: none;
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  
  .topbar {
    height: 56px;
    padding: 0 12px;
  }
  
  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none !important;
  }
  
  /* Mobile main adjustments */
  .mobile-main {
    border-radius: 0;
    border: none;
    margin: 0;
  }
  
  /* Glass effect not needed on mobile main */
  .main.glass {
    background: transparent;
    border: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 1024px) {
  html, body {
    overflow-x: hidden;
  }
}

/* Desktop only - show elements hidden on mobile */
@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

/* Touch-friendly elements */
@media (hover: none) and (pointer: coarse) {
  .module-item {
    padding: 14px;
    min-height: 48px;
  }
  button, input, select {
    min-height: 44px; /* Apple HIG minimum touch target */
  }
}

/* Force hide scrollbars on dock sidebar - override all */
.dock-sidebar,
.dock-sidebar * {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.dock-sidebar::-webkit-scrollbar,
.dock-sidebar *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

/* ==================== */
/* Dock Panel Root Fix (Preview mode scrollbar issue)
 * 
 * Issue: When Preview is On, a dock/panel overlay appears and in prod
 * shows an unwanted scrollbar. This occurs because:
 * 1. The dock root container inherits overflow from parent
 * 2. Production build may tree-shake some CSS differently
 * 3. Fixed-height containers cause overflow
 * 
 * Solution: Enforce overflow:hidden on all dock-related containers.
 * Inner panels manage their own scroll with overflow:auto.
 * Selectors touched: .phx-dock-root, .preview-sidebar-hover .dock-root,
 *   html.preview-sidebar-hover .sidebar, .phx-dock-panel, .sidebar-dock-container
 * ==================== */
.phx-dock-root,
.preview-sidebar-hover .dock-root,
html.preview-sidebar-hover .sidebar,
.sidebar-dock-container {
  position: relative;
  overflow: hidden !important;
  max-height: 100vh;
}

/* When preview mode is active, the sidebar becomes a dock */
html.preview-sidebar-hover .sidebar {
  overflow: visible !important; /* Allow hover popouts */
  overflow-y: hidden !important;
  max-height: 100vh;
}

/* Dock inner panels can scroll independently */
.phx-dock-panel {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-height: calc(100vh - 80px);
}
.phx-dock-panel::-webkit-scrollbar {
  display: none;
}

/* Preview dock card row - responsive grid with consistent min-width */
html.preview-sidebar-hover .dock-card-row,
.phx-dock-root .dock-card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
  width: 100%;
}

/* Ensure AIS card doesn't wrap/drop line in dock */
html.preview-sidebar-hover .ais-tracking-card,
.phx-dock-root .ais-tracking-card {
  min-width: 280px;
  flex-shrink: 0;
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/MobileBottomNav.module.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************/
.MobileBottomNav_bottomNav__jAIP0 {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.98), rgba(5, 6, 10, 0.99));
  border-top: 1px solid rgba(125, 211, 252, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Show only on mobile */
@media (max-width: 768px) {
  .MobileBottomNav_bottomNav__jAIP0 {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}

.MobileBottomNav_navItem__VKJqZ {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 12px;
  text-decoration: none;
  color: #64748b;
  transition: all 0.2s ease;
  border-radius: 12px;
  min-width: 56px;
}

.MobileBottomNav_navItem__VKJqZ:active {
  transform: scale(0.95);
}

.MobileBottomNav_navItem__VKJqZ.MobileBottomNav_active__3hxC6 {
  color: #38bdf8;
}

.MobileBottomNav_navItem__VKJqZ.MobileBottomNav_active__3hxC6 .MobileBottomNav_icon__Y4p2i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.5));
}

.MobileBottomNav_icon__Y4p2i {
  font-size: 22px;
  transition: all 0.2s ease;
}

.MobileBottomNav_label__OIpee {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Button style reset for nav items */
button.MobileBottomNav_navItem__VKJqZ {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

/* Haptic feedback indicator */
.MobileBottomNav_navItem__VKJqZ:active::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3), transparent 70%);
  border-radius: 50%;
  animation: MobileBottomNav_ripple__3wEbD 0.4s ease-out;
}

@keyframes MobileBottomNav_ripple__3wEbD {
  from {
    transform: scale(0.5);
    opacity: 1;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}

/* Mobile Chat Panel */
.MobileBottomNav_chatPanel__z0SsF {
  position: fixed;
  bottom: 64px;
  left: 0;
  right: 0;
  height: 60vh;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.98), rgba(5, 6, 10, 0.99));
  border-top: 1px solid rgba(125, 211, 252, 0.2);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  animation: MobileBottomNav_slideUp__MmYUp 0.3s ease-out;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

@keyframes MobileBottomNav_slideUp__MmYUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.MobileBottomNav_chatHeader__hW74V {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 16px;
  color: #e2e8f0;
}

.MobileBottomNav_chatClose__oa3cR {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #94a3b8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.MobileBottomNav_chatClose__oa3cR:active {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0.95);
}

.MobileBottomNav_chatBody__478Rs {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.MobileBottomNav_chatPlaceholder__e4Eek {
  text-align: center;
  color: #64748b;
}

.MobileBottomNav_chatIcon__5tW5_ {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  animation: MobileBottomNav_pulse__WKq_a 2s ease-in-out infinite;
}

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

.MobileBottomNav_chatPlaceholder__e4Eek p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #94a3b8;
}

.MobileBottomNav_chatSubtext__iCzzN {
  font-size: 13px !important;
  color: #64748b !important;
  margin-top: 8px !important;
}

/* Voice Messages */
.MobileBottomNav_messages__OJWJR {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 0;
}

.MobileBottomNav_message__2Vawv {
  padding: 12px 16px;
  border-radius: 16px;
  max-width: 85%;
  animation: MobileBottomNav_fadeIn__7fLjD 0.2s ease;
}

.MobileBottomNav_message__2Vawv.MobileBottomNav_user__haaG_ {
  background: linear-gradient(135deg, #ff6b35, #ea580c);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.MobileBottomNav_message__2Vawv.MobileBottomNav_assistant__O2BTw {
  background: rgba(56, 189, 248, 0.15);
  color: #e2e8f0;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.MobileBottomNav_message__2Vawv strong {
  display: block;
  font-size: 11px;
  margin-bottom: 4px;
  opacity: 0.8;
}

.MobileBottomNav_message__2Vawv p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

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

.MobileBottomNav_error__9Hvq7 {
  color: #ef4444;
  font-size: 12px;
  padding: 8px;
  text-align: center;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  margin-top: 8px;
}

/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/MobileNavbar.module.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
.MobileNavbar_navbar__yNaco {
  display: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  padding: 0 16px;
  padding-top: env(safe-area-inset-top, 0);
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.98), rgba(11, 16, 32, 0.95));
  border-bottom: 1px solid rgba(125, 211, 252, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .MobileNavbar_navbar__yNaco {
    display: flex;
  }
}

.MobileNavbar_brand__N6D2O {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.MobileNavbar_logo__31Iqq {
  height: 32px;
  width: 32px;
  border-radius: 8px;
}

.MobileNavbar_brandText__BEznh {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.MobileNavbar_actions__8Ib8W {
  display: flex;
  align-items: center;
  gap: 12px;
}

.MobileNavbar_walletBtn__bOuvQ {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

.MobileNavbar_walletAmount__sE_p_ {
  color: #fbbf24;
  font-weight: 700;
}

.MobileNavbar_avatarBtn__lIGIX {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.15);
  border: 1px solid rgba(125, 211, 252, 0.3);
  text-decoration: none;
  overflow: hidden;
}

.MobileNavbar_avatar__4GoyX {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.MobileNavbar_loginBtn__Bo4Nd {
  padding: 8px 16px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  border-radius: 20px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/*!********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/PageTransition.module.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************/
.PageTransition_overlay__IkrbI {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(0,20,40,0.98) 0%, rgba(0,10,20,0.99) 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.PageTransition_overlay__IkrbI.PageTransition_active__P08ad {
  opacity: 1;
}

.PageTransition_overlay__IkrbI.PageTransition_exit__BXsRg {
  opacity: 0;
  pointer-events: none;
}

.PageTransition_loaderContainer__ICyEH {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer rotating ring */
.PageTransition_ringOuter__Aq1Zk {
  position: absolute;
  width: 180px;
  height: 180px;
  animation: PageTransition_rotateClockwise__SRq1P 2s linear infinite;
}

.PageTransition_ringOuter__Aq1Zk svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(0,217,255,0.5));
}

/* Middle pulsing ring */
.PageTransition_ringMiddle___RudS {
  position: absolute;
  width: 140px;
  height: 140px;
  animation: PageTransition_pulse__xoN9y 1.5s ease-in-out infinite;
}

.PageTransition_ringMiddle___RudS svg {
  width: 100%;
  height: 100%;
}

/* Inner rotating ring - reverse direction */
.PageTransition_ringInner___7vgO {
  position: absolute;
  width: 100px;
  height: 100px;
  animation: PageTransition_rotateCounterClockwise__3Hx_l 1.5s linear infinite;
}

.PageTransition_ringInner___7vgO svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(255,0,255,0.5));
}

/* Logo container */
.PageTransition_logoContainer__mwpKD {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.PageTransition_logoGlow__S8sOv {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255,107,0,0.4) 0%, rgba(255,0,100,0.2) 50%, transparent 70%);
  border-radius: 50%;
  animation: PageTransition_logoGlow__S8sOv 2s ease-in-out infinite;
}

.PageTransition_logo__urv91 {
  width: 48px;
  height: 48px;
  animation: PageTransition_logoFloat__PClW2 3s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(255,107,0,0.6));
  z-index: 11;
}

/* Particles */
.PageTransition_particles__pBDgE {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.PageTransition_particle___FEuU {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #00d9ff, #ff00ff);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: PageTransition_particleOrbit__x6qKb 3s linear infinite;
  animation-delay: calc(var(--i) * -0.25s);
  opacity: 0.8;
  box-shadow: 0 0 6px rgba(0,217,255,0.8);
}

/* Scanning line effect */
.PageTransition_scanLine__jJOjQ {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,217,255,0.8), transparent);
  animation: PageTransition_scanMove__6VSXb 2s linear infinite;
  box-shadow: 0 0 20px rgba(0,217,255,0.5);
}

/* Loading text */
.PageTransition_loadingText__t4bs4 {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.PageTransition_textGlow__OVVSt {
  color: #00d9ff;
  text-shadow: 0 0 10px rgba(0,217,255,0.8), 0 0 20px rgba(0,217,255,0.4);
  animation: PageTransition_textPulse__n0L5y 1.5s ease-in-out infinite;
}

.PageTransition_dots__Qo6lU {
  display: flex;
  gap: 2px;
}

.PageTransition_dots__Qo6lU span {
  color: #00d9ff;
  animation: PageTransition_dotBlink__fvWXl 1.4s infinite;
  opacity: 0;
}

.PageTransition_dots__Qo6lU span:nth-child(1) { animation-delay: 0s; }
.PageTransition_dots__Qo6lU span:nth-child(2) { animation-delay: 0.2s; }
.PageTransition_dots__Qo6lU span:nth-child(3) { animation-delay: 0.4s; }

/* Corner accents */
.PageTransition_corner__UOl7j {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0,217,255,0.4);
}

.PageTransition_topLeft__8HHMd {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
  animation: PageTransition_cornerPulse__7oIDV 2s ease-in-out infinite;
}

.PageTransition_topRight__RPb3F {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
  animation: PageTransition_cornerPulse__7oIDV 2s ease-in-out infinite 0.5s;
}

.PageTransition_bottomLeft__tInBg {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
  animation: PageTransition_cornerPulse__7oIDV 2s ease-in-out infinite 1s;
}

.PageTransition_bottomRight__P8cyR {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
  animation: PageTransition_cornerPulse__7oIDV 2s ease-in-out infinite 1.5s;
}

/* Keyframes */
@keyframes PageTransition_rotateClockwise__SRq1P {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes PageTransition_rotateCounterClockwise__3Hx_l {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes PageTransition_pulse__xoN9y {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes PageTransition_logoGlow__S8sOv {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes PageTransition_logoFloat__PClW2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes PageTransition_particleOrbit__x6qKb {
  0% {
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 30deg)) translateX(70px) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 30deg + 180deg)) translateX(90px) scale(1.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 30deg + 360deg)) translateX(70px) scale(1);
    opacity: 0.8;
  }
}

@keyframes PageTransition_scanMove__6VSXb {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes PageTransition_textPulse__n0L5y {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes PageTransition_dotBlink__fvWXl {
  0%, 20% { opacity: 0; }
  40%, 100% { opacity: 1; }
}

@keyframes PageTransition_cornerPulse__7oIDV {
  0%, 100% { 
    border-color: rgba(0,217,255,0.4);
    box-shadow: none;
  }
  50% { 
    border-color: rgba(0,217,255,0.8);
    box-shadow: 0 0 10px rgba(0,217,255,0.5);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .PageTransition_loaderContainer__ICyEH {
    width: 150px;
    height: 150px;
  }
  
  .PageTransition_ringOuter__Aq1Zk { width: 140px; height: 140px; }
  .PageTransition_ringMiddle___RudS { width: 110px; height: 110px; }
  .PageTransition_ringInner___7vgO { width: 80px; height: 80px; }
  .PageTransition_logoContainer__mwpKD { width: 48px; height: 48px; }
  .PageTransition_logo__urv91 { width: 36px; height: 36px; }
  .PageTransition_logoGlow__S8sOv { width: 60px; height: 60px; }
  
  .PageTransition_corner__UOl7j { width: 30px; height: 30px; }
  .PageTransition_loadingText__t4bs4 { font-size: 12px; letter-spacing: 3px; }
}

/*!********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/VoiceAssistant.module.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************/
.VoiceAssistant_voiceAssistant__6tzuW {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
}

@media (max-width: 768px) {
  .VoiceAssistant_voiceAssistant__6tzuW { bottom: 90px; right: 16px; }
}

/* Button */
.VoiceAssistant_btn__nNtrm {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid #64748b;
  background: linear-gradient(145deg, #0a1929, #0d2137);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.VoiceAssistant_btn__nNtrm:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255,107,53,0.3);
}

.VoiceAssistant_btn__nNtrm.VoiceAssistant_active__wHYI7 {
  border-color: #ff6b35;
  box-shadow: 0 0 25px rgba(255,107,53,0.4);
  animation: VoiceAssistant_pulse__QrMAU 2s infinite;
}

@keyframes VoiceAssistant_pulse__QrMAU {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.VoiceAssistant_icon__WdbNZ {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px rgba(255,107,53,0.6));
  transition: stroke 0.2s;
}

.VoiceAssistant_ring__D_skg {
  position: absolute;
  inset: -6px;
  border: 2px solid;
  border-radius: 50%;
  animation: VoiceAssistant_ringPulse__thXQv 2s infinite;
  pointer-events: none;
}

@keyframes VoiceAssistant_ringPulse__thXQv {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Panel */
.VoiceAssistant_panel__41tAd {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 340px;
  background: linear-gradient(145deg, #0a1929, #0d2137);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: VoiceAssistant_slideIn__xGq40 0.2s ease;
  overflow: hidden;
}

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

.VoiceAssistant_header__Xu5Nr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.VoiceAssistant_title__yMJ6p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

.VoiceAssistant_phoenix__1MkfI {
  font-size: 20px;
  filter: drop-shadow(0 0 6px rgba(255,107,53,0.8));
}

.VoiceAssistant_close__NHjLY {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: #8b9cb3;
  font-size: 18px;
  padding: 2px 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.VoiceAssistant_close__NHjLY:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Context bar */
.VoiceAssistant_context__PGbPo {
  display: flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 4px;
}

/* Chat */
.VoiceAssistant_chat__r8VYv {
  padding: 16px;
  max-height: 280px;
  overflow-y: auto;
  min-height: 100px;
}

.VoiceAssistant_welcome__eCn2J {
  text-align: center;
  color: rgba(255,255,255,0.7);
  padding: 20px 10px;
}

.VoiceAssistant_welcome__eCn2J p {
  font-size: 15px;
  margin: 0 0 8px;
}

.VoiceAssistant_welcome__eCn2J small {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.VoiceAssistant_msg__7HuYA {
  margin-bottom: 12px;
  animation: VoiceAssistant_fadeIn__Aj8Ma 0.2s;
}

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

.VoiceAssistant_msg__7HuYA.VoiceAssistant_user__cQkXr {
  text-align: right;
}

.VoiceAssistant_bubble__m1xk7 {
  display: inline-block;
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  text-align: left;
}

.VoiceAssistant_msg__7HuYA.VoiceAssistant_user__cQkXr .VoiceAssistant_bubble__m1xk7 {
  background: rgba(255,107,53,0.15);
  border-radius: 14px 14px 4px 14px;
}

.VoiceAssistant_msg__7HuYA.VoiceAssistant_assistant__G3LqS .VoiceAssistant_bubble__m1xk7 {
  background: rgba(6,182,212,0.12);
  border-radius: 14px 14px 14px 4px;
}

.VoiceAssistant_bubble__m1xk7 strong {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8b9cb3;
  margin-bottom: 4px;
}

.VoiceAssistant_bubble__m1xk7 p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}

/* Typing dots */
.VoiceAssistant_dots__koFk0 {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}

.VoiceAssistant_dots__koFk0 span {
  width: 8px;
  height: 8px;
  background: #06b6d4;
  border-radius: 50%;
  animation: VoiceAssistant_bounce__9j5ZE 1.2s infinite;
}

.VoiceAssistant_dots__koFk0 span:nth-child(2) { animation-delay: 0.15s; }
.VoiceAssistant_dots__koFk0 span:nth-child(3) { animation-delay: 0.3s; }

@keyframes VoiceAssistant_bounce__9j5ZE {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* Error */
.VoiceAssistant_error__9Aoct {
  margin: 0 16px 12px;
  padding: 10px 12px;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px;
  color: #fca5a5;
  font-size: 13px;
}

/* Status */
.VoiceAssistant_status__roRmt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.VoiceAssistant_dot__U_XDH {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: VoiceAssistant_blink__paebN 1.5s infinite;
}

@keyframes VoiceAssistant_blink__paebN {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Scrollbar */
.VoiceAssistant_chat__r8VYv::-webkit-scrollbar { width: 5px; }
.VoiceAssistant_chat__r8VYv::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
.VoiceAssistant_chat__r8VYv::-webkit-scrollbar-thumb { background: rgba(255,107,53,0.3); border-radius: 3px; }

/* Mobile */
@media (max-width: 768px) {
  .VoiceAssistant_panel__41tAd {
    width: calc(100vw - 32px);
    max-width: 340px;
    right: -4px;
  }
  .VoiceAssistant_btn__nNtrm { width: 56px; height: 56px; }
  .VoiceAssistant_icon__WdbNZ { width: 24px; height: 24px; }
}

