/* Global Scrollbar Styles */
/* For Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

.mobile-padding {
  padding-top: env(safe-area-inset-top, 0px);
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 2px;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

/* Optional: Dark Mode */
body.dark-mode * {
  scrollbar-color: #aaa #333;
}

body.dark-mode *::-webkit-scrollbar-thumb {
  background-color: #aaa;
}

.table-sticky-header-column thead tr {
  background-color: #eeeeee;
}
.table-sticky-header-column td:first-child {
  background-color: #eeeeee;
}
.table-sticky-header-column th:first-child,
.table-sticky-header-column td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
}

.table-sticky-header {
  max-height: 710px;
}
.table-sticky-header thead tr {
  background-color: #eeeeee;
  position: sticky;
  top: 0;
  z-index: 2;
}
.table-sticky-header td:first-child {
  background-color: #eeeeee;
}

.sticky-table-header {
  max-height: 710px;
}
.sticky-table-header thead tr {
  background-color: #eeeeee;
  position: sticky;
  top: 0;
  z-index: 2;
}

.sticky-header {
  height: 710px;
}
.sticky-header .q-table__top,
.sticky-header .q-table__bottom,
.sticky-header thead tr:first-child th {
  background-color: #eeeeee;
}
.sticky-header thead tr th {
  position: sticky;
  z-index: 1;
}
.sticky-header thead tr:first-child th {
  top: 0;
}
.sticky-header.q-table--loading thead tr:last-child th {
  top: 48px;
}
.sticky-header tbody {
  scroll-margin-top: 48px;
}

/* Full-Screen Overlay (Chukul Luxury Dark Theme) */
.migration-overlay[data-v-3b630628] {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 15% 20%, rgba(201, 168, 76, 0.16) 0%, transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 45%),
              rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px;
  overflow-y: auto;
  font-family: 'Roboto', 'Inter', system-ui, -apple-system, sans-serif;
}

/* Background Glowing Orbs in Golden */
.glow-orb[data-v-3b630628] {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
.orb-1[data-v-3b630628] {
  width: 380px;
  height: 380px;
  background: #c9a84c;
  top: 10%;
  left: 10%;
  animation: floatOrb-3b630628 8s ease-in-out infinite alternate;
}
.orb-2[data-v-3b630628] {
  width: 420px;
  height: 420px;
  background: #dbbb67;
  bottom: 10%;
  right: 10%;
  animation: floatOrb-3b630628 10s ease-in-out infinite alternate-reverse;
}
@keyframes floatOrb-3b630628 {
0% { transform: translate(0, 0) scale(1);
}
100% { transform: translate(30px, -30px) scale(1.12);
}
}

/* Glassmorphism Luxury Card */
.migration-card[data-v-3b630628] {
  background: linear-gradient(135deg, rgba(29, 29, 29, 0.98) 0%, rgba(18, 18, 18, 0.98) 100%);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 28px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), 
              0 0 50px rgba(201, 168, 76, 0.18);
  max-width: 660px;
  width: 100%;
  padding: 42px;
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: auto;
  animation: modalPopIn-3b630628 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes modalPopIn-3b630628 {
from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
}
to {
    opacity: 1;
    transform: scale(1) translateY(0);
}
}

/* Close Modal Button */
.close-modal-btn[data-v-3b630628] {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #dbbb67;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}
.close-modal-btn[data-v-3b630628]:hover {
  background: rgba(201, 168, 76, 0.2);
  color: #ffffff;
  border-color: #c9a84c;
  transform: rotate(90deg) scale(1.08);
}

/* Badge */
.card-badge[data-v-3b630628] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #dbbb67;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
}
.badge-dot[data-v-3b630628] {
  width: 8px;
  height: 8px;
  background: #c9a84c;
  border-radius: 50%;
  box-shadow: 0 0 8px #c9a84c;
  animation: pulseDot-3b630628 1.5s infinite;
}
@keyframes pulseDot-3b630628 {
0%, 100% { opacity: 1; transform: scale(1);
}
50% { opacity: 0.5; transform: scale(0.85);
}
}

/* Brand Transition Graphic */
.brand-transition[data-v-3b630628] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.brand-item[data-v-3b630628] {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.brand-logo[data-v-3b630628] {
  height: 26px;
  width: auto;
  object-fit: contain;
}
.brand-name[data-v-3b630628] {
  font-size: 17px;
  font-weight: 700;
  color: #f8fafc;
}
.chukul-brand[data-v-3b630628] {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.08);
}
.chukul-logo-box[data-v-3b630628] {
  width: 32px;
  height: 32px;
  background: #c9a84c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #121212;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
}
.chukul-text-wrap[data-v-3b630628] {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}
.chukul-title[data-v-3b630628] {
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
}
.brand-sub[data-v-3b630628] {
  font-size: 10px;
  font-weight: 700;
  color: #dbbb67;
  letter-spacing: 1px;
}
.transition-arrow[data-v-3b630628] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  color: #dbbb67;
  position: relative;
}
.arrow-pulse[data-v-3b630628] {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #c9a84c;
  animation: rippleArrow-3b630628 2s infinite;
}
@keyframes rippleArrow-3b630628 {
0% { transform: scale(1); opacity: 0.8;
}
100% { transform: scale(1.6); opacity: 0;
}
}

/* Typography */
.card-title[data-v-3b630628] {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.golden-text[data-v-3b630628] {
  background: linear-gradient(135deg, #f4c430 0%, #c9a84c 50%, #dbbb67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.text-golden[data-v-3b630628] {
  color: #dbbb67;
}
.card-description[data-v-3b630628] {
  font-size: 15px;
  line-height: 1.65;
  color: #cccccc;
  margin-bottom: 32px;
  text-align: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Grid */
.feature-grid[data-v-3b630628] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
  text-align: left;
}
.feature-pill[data-v-3b630628] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.feature-pill[data-v-3b630628]:hover {
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
}
.feature-icon[data-v-3b630628] {
  font-size: 24px;
}
.feature-text[data-v-3b630628] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-text strong[data-v-3b630628] {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.feature-text span[data-v-3b630628] {
  font-size: 12px;
  color: #aaaaaa;
  line-height: 1.4;
}

/* Action Buttons */
.card-actions[data-v-3b630628] {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.btn-primary-redirect[data-v-3b630628] {
  background: linear-gradient(135deg, #dbbb67 0%, #c9a84c 100%);
  border: none;
  color: #121212;
  font-size: 17px;
  font-weight: 800;
  padding: 18px 32px;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 25px -5px rgba(201, 168, 76, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary-redirect[data-v-3b630628]:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(201, 168, 76, 0.65);
  filter: brightness(1.08);
}
.btn-primary-redirect[data-v-3b630628]:active {
  transform: translateY(0);
}
.btn-primary-redirect:hover .icon-move[data-v-3b630628] {
  transform: translateX(5px);
}
.icon-move[data-v-3b630628] {
  transition: transform 0.3s ease;
}
.btn-secondary-continue[data-v-3b630628] {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #dbbb67;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary-continue[data-v-3b630628]:hover {
  background: rgba(201, 168, 76, 0.25);
  color: #ffffff;
  border-color: #c9a84c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -5px rgba(201, 168, 76, 0.3);
}

/* Sticky Top Banner (Chukul Luxury Golden Theme) */
.migration-banner[data-v-3b630628] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: linear-gradient(90deg, #1d1d1d 0%, #242424 50%, #1d1d1d 100%);
  border-bottom: 2px solid #c9a84c;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  color: white;
  flex-wrap: wrap;
}
.banner-content[data-v-3b630628] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.banner-icon[data-v-3b630628] {
  font-size: 22px;
}
.banner-text[data-v-3b630628] {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.banner-text strong[data-v-3b630628] {
  color: #dbbb67;
}
.banner-text span[data-v-3b630628] {
  color: #cccccc;
  font-size: 12px;
}
.banner-btn[data-v-3b630628] {
  background: #c9a84c;
  border: none;
  color: #121212;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
  transition: all 0.2s;
  white-space: nowrap;
}
.banner-btn[data-v-3b630628]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.5);
  filter: brightness(1.1);
}

/* Animations */
.modal-fade-enter-active[data-v-3b630628], .modal-fade-leave-active[data-v-3b630628] {
  transition: opacity 0.4s ease;
}
.modal-fade-enter-from[data-v-3b630628], .modal-fade-leave-to[data-v-3b630628] {
  opacity: 0;
}
.banner-slide-enter-active[data-v-3b630628], .banner-slide-leave-active[data-v-3b630628] {
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.banner-slide-enter-from[data-v-3b630628], .banner-slide-leave-to[data-v-3b630628] {
  transform: translateY(-100%);
  opacity: 0;
}

/* Responsive Styles */
@media (max-width: 650px) {
.migration-card[data-v-3b630628] {
    padding: 28px 20px;
    border-radius: 20px;
}
.card-title[data-v-3b630628] {
    font-size: 24px;
}
.brand-transition[data-v-3b630628] {
    gap: 10px;
}
.brand-item[data-v-3b630628] {
    padding: 8px 12px;
}
.feature-grid[data-v-3b630628] {
    grid-template-columns: 1fr;
}
.migration-banner[data-v-3b630628] {
    flex-direction: column;
    text-align: center;
    padding: 14px 16px;
}
.banner-content[data-v-3b630628] {
    flex-direction: column;
    gap: 6px;
}
}


.route-enter-from {
  opacity: 0;
  transform: translateY(100px);
}
.route-enter-active {
  transition: all 0.3s ease-out;
}
.route-leave-to {
  opacity: 0;
  transform: translateY(-100px);
}
.route-leave-active {
  transition: all 0.3s ease-in;
}


/*# sourceMappingURL=app.961215f9.css.map*/