/* CSS Design System - Cyberpunk Hacker Style (Carders Vault Clone) */

:root {
  --font-heading: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  
  /* Color Palette (HSL matches original Tailwind settings) */
  --background: 220 20% 4%;
  --foreground: 150 80% 75%;
  --card: 220 18% 7%;
  --card-foreground: 150 30% 85%;
  --popover: 220 18% 7%;
  --popover-foreground: 150 30% 85%;
  --primary: 150 80% 45%;
  --primary-foreground: 220 20% 4%;
  --secondary: 220 15% 12%;
  --secondary-foreground: 150 30% 80%;
  --muted: 220 15% 10%;
  --muted-foreground: 220 10% 50%;
  --accent: 170 70% 40%;
  --accent-foreground: 220 20% 4%;
  --destructive: 0 72% 51%;
  --destructive-foreground: 0 0% 98%;
  --border: 150 30% 15%;
  --input: 220 15% 12%;
  --ring: 150 80% 45%;
  
  --radius: 0.5rem;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  font-family: ui-sans-serif, system-ui, sans-serif;
  scroll-behavior: smooth;
  background-color: hsl(var(--background));
  color: hsl(var(--card-foreground));
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Background Grids & Glows */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(hsl(150 30% 15% / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, hsl(150 30% 15% / 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.bg-glow {
  position: absolute;
  top: -10%;
  left: 25%;
  width: 600px;
  height: 600px;
  background-color: hsla(var(--primary) / 0.04);
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

/* Typography Custom Classes */
.font-heading {
  font-family: var(--font-heading);
}

.font-mono {
  font-family: var(--font-mono);
}

.text-glow {
  text-shadow: 0 0 10px hsla(var(--primary) / 0.5);
}

.text-primary {
  color: hsl(var(--primary));
}

.text-destructive {
  color: hsl(var(--destructive));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* Custom Glow Shadows */
.glow-green {
  box-shadow: 0 0 15px hsla(var(--primary) / 0.3), 0 0 30px hsla(var(--primary) / 0.1);
}

.glow-green-sm {
  box-shadow: 0 0 8px hsla(var(--primary) / 0.2);
}

/* Header & Nav */
.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: hsl(var(--background) / 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  height: 70px;
}

.header-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: hsl(var(--card-foreground));
}

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background-color: hsla(var(--primary) / 0.1);
  border: 1px solid hsla(var(--primary) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.logo-link:hover .logo-icon {
  background-color: hsla(var(--primary) / 0.2);
  box-shadow: 0 0 12px hsla(var(--primary) / 0.4);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-item {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: hsl(var(--muted-foreground));
  transition: var(--transition-fast);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-item:hover {
  color: hsl(var(--primary));
  background-color: hsla(var(--primary) / 0.05);
}

.nav-item.active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground)) !important;
  box-shadow: 0 0 15px hsla(var(--primary) / 0.35);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Balance Widget */
.balance-widget {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.balance-label {
  color: hsl(var(--muted-foreground));
}

.balance-value {
  color: hsl(var(--foreground));
  font-weight: 700;
}

.balance-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  text-decoration: none;
  transition: var(--transition-fast);
  border: none;
}

.balance-add-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px hsl(var(--primary));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover:not(:disabled) {
  background-color: hsla(var(--primary) / 0.9);
  box-shadow: 0 0 15px hsla(var(--primary) / 0.5);
}

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border-color: hsl(var(--border));
}

.btn-secondary:hover:not(:disabled) {
  background-color: hsl(var(--muted));
  border-color: hsla(var(--primary) / 0.3);
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--card-foreground));
  border-color: hsl(var(--border));
}

.btn-outline:hover:not(:disabled) {
  border-color: hsl(var(--primary));
  background-color: hsla(var(--primary) / 0.05);
}

.btn-sm {
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.icon-sm {
  width: 0.85rem;
  height: 0.85rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 600;
  font-family: var(--font-mono);
}

.badge-primary {
  background-color: hsla(var(--primary) / 0.15);
  color: hsl(var(--primary));
  border: 1px solid hsla(var(--primary) / 0.3);
}

.badge-outline {
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
}

.badge-success {
  background-color: rgba(23, 207, 115, 0.1);
  color: #17cf73;
  border: 1px solid rgba(23, 207, 115, 0.2);
}

.badge-danger {
  background-color: hsla(var(--destructive) / 0.1);
  color: #ff4a4a;
  border: 1px solid hsla(var(--destructive) / 0.2);
}

/* Profile Dropdown */
.profile-dropdown {
  position: relative;
}

.profile-trigger {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.profile-trigger:hover {
  border-color: hsl(var(--primary));
}

.profile-initials {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: 200px;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
  animation: enter 0.15s ease;
}

.profile-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-header {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.user-email {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-divider {
  height: 1px;
  background-color: hsl(var(--border));
  margin: 0.5rem 0;
}

.dropdown-item {
  width: 100%;
  padding: 0.5rem;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  border: none;
  color: hsl(var(--card-foreground));
  font-size: 0.8rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
  text-align: left;
}

.dropdown-item:hover {
  background-color: hsl(var(--secondary));
  color: hsl(var(--foreground));
}

.dropdown-item i {
  width: 0.9rem;
  height: 0.9rem;
  color: hsl(var(--muted-foreground));
}

.dropdown-item:hover i {
  color: hsl(var(--primary));
}

/* App Layout & Routing views */
.app-main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  z-index: 10;
}

.loading-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid hsla(var(--primary) / 0.1);
  border-top-color: hsl(var(--primary));
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Grid helper */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .grid-2 {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Home Screen hero section */
.hero-text {
  max-width: 580px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media (min-width: 576px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--card-foreground));
}

.stat-item p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: hsl(var(--muted-foreground));
}

/* Cyber holographic credit card graphic */
.hero-graphic {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.holo-card {
  position: relative;
  width: 320px;
  height: 200px;
  border-radius: 12px;
  background: linear-gradient(135deg, hsl(220 18% 7%) 0%, hsl(220 20% 4%) 100%);
  border: 1px solid hsla(var(--primary) / 0.3);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 25px hsla(var(--primary) / 0.15);
  overflow: hidden;
  transform: rotateY(-10deg) rotateX(10deg);
  transition: var(--transition-slow);
}

.holo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, hsla(var(--primary) / 0.15), transparent);
  transform: translateX(-100%);
  transition: var(--transition-slow);
}

.hero-graphic:hover .holo-card {
  transform: rotateY(0deg) rotateX(0deg) scale(1.05);
  box-shadow: 0 25px 45px rgba(0,0,0,0.7), 0 0 35px hsla(var(--primary) / 0.3);
}

.hero-graphic:hover .holo-card::before {
  transform: translateX(100%);
  transition: 1.5s ease;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-chip {
  width: 40px;
  height: 30px;
  border-radius: 4px;
  background: linear-gradient(135deg, #dfa234 0%, #ab751a 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid #dfa23455;
}

.card-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #fff;
  opacity: 0.85;
}

.card-middle {
  margin-top: 1.5rem;
}

.card-number {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  word-spacing: 0.2em;
  color: hsl(var(--foreground));
  text-shadow: 0 0 5px hsla(var(--primary) / 0.4);
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-holder, .card-expiry {
  display: flex;
  flex-direction: column;
}

.card-bottom label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
}

.card-bottom span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--card-foreground));
}

/* Home page extra sections (Features / Benefits) */
.features-section {
  margin-top: 6rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 4rem;
}

.section-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 3rem auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition-normal);
}

.feature-card:hover {
  border-color: hsla(var(--primary) / 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.feature-icon-wrapper {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background-color: hsla(var(--primary) / 0.08);
  border: 1px solid hsla(var(--primary) / 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card i {
  color: hsl(var(--primary));
}

/* Cards Screen Layout */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 1rem;
  border-radius: var(--radius);
}

.search-wrapper {
  position: relative;
  flex: 1;
  max-width: 320px;
}

.search-input {
  width: 100%;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.5rem 1rem 0.5rem 2.25rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: hsl(var(--card-foreground));
  transition: var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 1px hsl(var(--primary));
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--muted-foreground));
  pointer-events: none;
  width: 0.95rem;
  height: 0.95rem;
}

.type-filters {
  display: flex;
  gap: 0.5rem;
}

.filter-btn {
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  color: hsl(var(--foreground));
  border-color: hsla(var(--primary) / 0.3);
}

.filter-btn.active {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.welcome-widget {
  margin-bottom: 2rem;
  border-bottom: 1px dashed hsl(var(--border));
  padding-bottom: 1.5rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  border-color: hsla(var(--primary) / 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card-type-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: hsl(var(--card-foreground));
}

.card-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1rem 0 1.25rem 0;
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  padding: 0.75rem 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.detail-label {
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
}

.detail-val {
  color: hsl(var(--card-foreground));
  font-weight: 500;
}

.card-purchase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: hsl(var(--primary));
  text-shadow: 0 0 5px hsla(var(--primary) / 0.3);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--card-foreground));
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: hsl(var(--card-foreground));
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 1px hsl(var(--primary));
}

.form-help {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: hsl(var(--muted-foreground));
}

/* File Upload styling */
.file-upload-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  background-color: hsl(var(--secondary));
  transition: var(--transition-normal);
  cursor: pointer;
  text-align: center;
}

.file-upload-wrapper:hover {
  border-color: hsl(var(--primary));
  background-color: hsla(var(--primary) / 0.02);
}

.file-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload-preview {
  margin-top: 1rem;
  max-width: 100%;
  max-height: 200px;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

/* Deposit Screen wallet grid */
.wallets-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wallet-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.wallet-card:hover, .wallet-card.active {
  border-color: hsl(var(--primary));
  background-color: hsla(var(--primary) / 0.03);
}

.wallet-logo {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: hsl(var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid hsl(var(--border));
}

.wallet-info {
  display: flex;
  flex-direction: column;
}

.wallet-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: hsl(var(--card-foreground));
}

.wallet-network {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: hsl(var(--muted-foreground));
}

.address-box {
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.address-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: hsl(var(--foreground));
  overflow-x: auto;
  white-space: nowrap;
}

.address-text::-webkit-scrollbar {
  height: 3px;
}

.address-text::-webkit-scrollbar-thumb {
  background: hsla(var(--primary) / 0.3);
}

.qr-code-box {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.qr-placeholder {
  width: 140px;
  height: 140px;
  border: 1px solid hsl(var(--border));
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

/* Modals & Overlays */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1.5rem;
}

.modal-overlay.hidden {
  display: none !important;
}

.modal-container {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  animation: modalEnter 0.2s ease-out;
}

.modal-sm {
  max-width: 400px;
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-close {
  background: transparent;
  border: none;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: hsl(var(--foreground));
}

.modal-body {
  padding: 1.5rem;
}

.form-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.25rem;
  margin-bottom: 1.5rem;
}

.tab-btn {
  background: transparent;
  border: none;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem;
  border-radius: calc(var(--radius) - 3px);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: hsl(var(--card-foreground));
}

.tab-btn.active {
  background-color: hsl(var(--card));
  color: hsl(var(--primary));
}

/* Toast System */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 150;
  max-width: 320px;
  width: 100%;
}

.toast {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.25s ease;
}

.toast-success {
  border-left: 3px solid #17cf73;
  color: #17cf73;
}

.toast-error {
  border-left: 3px solid #ff4a4a;
  color: #ff4a4a;
}

.toast-msg {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: hsl(var(--card-foreground));
}

/* Flash USDT package cards styling */
.flash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.flash-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
}

.flash-card:hover {
  border-color: hsla(var(--primary) / 0.3);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.flash-card.popular {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 20px hsla(var(--primary) / 0.15);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.flash-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: hsl(var(--card-foreground));
  margin-bottom: 0.5rem;
}

.flash-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.flash-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

/* Admin Dashboard layout */
.admin-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 0.75rem;
  border-radius: var(--radius);
}

.admin-tab-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-tab-btn:hover {
  background-color: hsl(var(--secondary));
  color: hsl(var(--foreground));
}

.admin-tab-btn.active {
  background-color: hsla(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-weight: 600;
}

.admin-tab-btn i {
  width: 0.95rem;
  height: 0.95rem;
}

.admin-content {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 400px;
}

/* Tables styling */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-align: left;
}

.app-table th {
  background-color: hsl(var(--secondary));
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.app-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid hsl(var(--border));
  color: hsl(var(--card-foreground));
}

.app-table tr:last-child td {
  border-bottom: none;
}

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

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

@keyframes modalEnter {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

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

/* Helper Utilities */
.hidden {
  display: none !important;
}

.text-center { text-align: center; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gap-2 { gap: 0.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.d-grid { display: grid; }

/* Custom User Uploaded Image Layouts */
.hero-image-container {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid hsla(var(--primary) / 0.15);
  background-color: hsl(var(--card));
  padding: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px hsla(var(--primary) / 0.05);
}

.hero-custom-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 4px);
  object-fit: contain;
}

.page-banner-container {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid hsla(var(--primary) / 0.15);
  background-color: hsl(var(--card));
  padding: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-custom-banner {
  width: 100%;
  max-height: 180px;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
}

/* How It Works Section */
.how-it-works-section, .testimonials-section, .faq-section {
  margin-top: 5rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 4rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background-color: hsla(var(--primary) / 0.08);
  border: 1px solid hsla(var(--primary) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  box-shadow: 0 0 15px hsla(var(--primary) / 0.1);
  margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.stars {
  color: #ffaa00;
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.6;
  color: hsl(var(--card-foreground));
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.client-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: hsl(var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
}

.client-meta {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: hsl(var(--foreground));
}

.client-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: hsl(var(--muted-foreground));
}

/* FAQ Accordion Section */
.faq-container {
  max-width: 800px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  color: hsl(var(--card-foreground));
}

.faq-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.faq-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--muted-foreground));
  transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: hsl(var(--primary));
}

.faq-item.active {
  border-color: hsla(var(--primary) / 0.3);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
}

.faq-item.active .faq-content {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
  padding-bottom: 1.5rem;
}

.faq-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

/* Cards Dashboard Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card-custom {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  transition: var(--transition-normal);
}

.stat-card-custom:hover {
  border-color: hsla(var(--primary) / 0.2);
  transform: translateY(-2px);
}

.stat-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}

.stat-card-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  line-height: 1.2;
}

.stat-card-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.35rem;
}

.text-success-custom { color: #17cf73; }
.text-primary-custom { color: #8b5cf6; }
.text-warning-custom { color: #ffaa00; }

/* Dashboard Detail Columns */
.dashboard-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .dashboard-columns {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.col-panel {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* Card Preview Visualizer */
.preview-cc-wrap {
  background: linear-gradient(135deg, hsl(220 18% 7%) 0%, hsl(220 20% 4%) 100%);
  border: 1px solid hsla(var(--primary) / 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px hsla(var(--primary) / 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
}

.cc-brand-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.cc-status-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #17cf73;
  box-shadow: 0 0 10px #17cf73;
  margin-left: auto;
}

.cc-number-preview {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 1rem;
}

.cc-holder-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.cc-holder-meta label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
}

.cc-holder-meta span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

/* Available Features List */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: hsl(var(--card-foreground));
}

.feat-icon-check {
  color: #17cf73;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

/* Weekly Sales Chart Mockup */
.chart-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.chart-title-lbl {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.chart-bars-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid hsl(var(--border));
}

.chart-bar-col {
  width: 12%;
  background-color: hsla(var(--primary) / 0.15);
  border: 1px solid hsla(var(--primary) / 0.3);
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}

.chart-bar-col:hover {
  background-color: hsl(var(--primary));
  box-shadow: 0 0 15px hsla(var(--primary) / 0.4);
}

.chart-labels-wrap {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

/* Product Catalog Table Styling */
.table-card-container {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

.catalog-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.catalog-search-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.catalog-table-wrapper {
  overflow-x: auto;
}

.catalog-table-view {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.catalog-table-view th {
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  border-bottom: 1px solid hsl(var(--border));
}

.catalog-table-view td {
  padding: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  font-family: var(--font-heading);
  font-size: 0.8rem;
  vertical-align: middle;
}

.catalog-table-view tr:last-child td {
  border-bottom: none;
}

.catalog-brand-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background-color: hsla(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid hsla(var(--primary) / 0.2);
}

.catalog-country-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.empty-catalog-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
}

.empty-catalog-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--muted-foreground));
  opacity: 0.6;
  margin-bottom: 1rem;
}

.empty-catalog-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Flash USDT Plan Styling */
.flash-feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.flash-feature-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
}

.flash-feature-card:hover {
  border-color: hsla(var(--primary) / 0.3);
  background-color: hsla(var(--primary) / 0.02);
}

.flash-plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.flash-plan-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.flash-plan-card.popular {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 25px hsla(var(--primary) / 0.15);
}

.flash-plan-pop-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px hsl(var(--primary));
}

.flash-plan-header {
  margin-bottom: 1.5rem;
}

.flash-plan-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.flash-plan-desc {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
  line-height: 1.5;
}

.flash-plan-amount-wrap {
  margin-bottom: 1rem;
}

.flash-plan-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: hsl(var(--primary));
  text-shadow: 0 0 15px hsla(var(--primary) / 0.4);
}

.flash-plan-rate {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.flash-plan-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.flash-plan-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: hsl(var(--card-foreground));
}

.flash-plan-btn {
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

.insuf-lbl {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: hsl(var(--destructive));
  text-align: center;
  margin-top: 0.75rem;
}

.insuf-lbl a {
  color: hsl(var(--primary));
  text-decoration: underline;
}

/* Flash Checkout Specific Styles */
.flash-checkout-container {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.flash-checkout-panel {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.75rem;
}

.flash-checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flash-checkout-net-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.flash-checkout-net-card {
  background-color: hsla(220, 15%, 10%, 0.4);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.flash-checkout-net-card.active {
  border-color: hsl(var(--primary));
  background-color: hsla(var(--primary) / 0.05);
}

.flash-checkout-net-lbl {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
}

.flash-checkout-net-desc {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}

.flash-checkout-input-group {
  margin-top: 1.5rem;
}

.flash-checkout-input {
  width: 100%;
  background-color: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #fff;
  transition: var(--transition-normal);
}

.flash-checkout-input:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 10px hsla(var(--primary) / 0.2);
  outline: none;
}

/* Deposit Screen Redesign */
.deposit-preset-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.preset-item {
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  transition: var(--transition-fast);
}

.preset-item:hover, .preset-item.active {
  border-color: hsl(var(--primary));
  color: #fff;
  background-color: hsla(var(--primary) / 0.05);
}

.deposit-input-wrapper {
  position: relative;
  margin-top: 0.5rem;
}

.deposit-input-sign {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
}

.deposit-amount-input {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  padding: 0.85rem 1rem 0.85rem 2rem;
  background-color: hsla(220, 15%, 10%, 0.4);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  color: #fff;
  transition: var(--transition-normal);
}

.deposit-amount-input:focus {
  border-color: hsl(var(--primary));
  outline: none;
  box-shadow: 0 0 10px hsla(var(--primary) / 0.15);
}

.deposit-method-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background-color: hsla(220, 15%, 10%, 0.4);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.deposit-method-item:hover {
  border-color: hsla(var(--primary) / 0.4);
  background-color: hsla(var(--primary) / 0.02);
}

.deposit-method-item.active {
  border-color: hsl(var(--primary));
  background-color: hsla(var(--primary) / 0.05);
}

.deposit-radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.deposit-method-item.active .deposit-radio-circle {
  border-color: hsl(var(--primary));
}

.deposit-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: transparent;
  transition: var(--transition-fast);
}

.deposit-method-item.active .deposit-radio-dot {
  background-color: hsl(var(--primary));
}

.deposit-coin-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.deposit-method-info {
  display: flex;
  flex-direction: column;
}

.deposit-method-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.deposit-method-network {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.15rem;
}

/* Balance Glow Widget */
.balance-glow-panel {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 25px hsla(var(--primary) / 0.15);
}

.balance-glow-val {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: hsl(var(--primary));
  text-shadow: 0 0 15px hsla(var(--primary) / 0.45);
  margin: 0.5rem 0;
}

/* Deposit History Widget */
.history-panel {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
}

.history-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.history-item-row:last-child {
  border-bottom: none;
}

.status-badge-clear {
  border: 1px solid currentColor;
  padding: 0.15rem 0.65rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-approved {
  color: #17cf73;
  background-color: rgba(23, 207, 115, 0.05);
}

.status-pending {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.05);
}

.status-declined {
  color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}

.history-date-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.15rem;
}

.history-amount-lbl {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

/* Custom Blurs and console logins */
.blurred-details {
  filter: blur(4.5px);
  user-select: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 0 4px;
  display: inline-block;
  pointer-events: none;
}

.admin-login-wrapper {
  max-width: 420px;
  margin: 4rem auto;
  perspective: 1000px;
}

.admin-login-card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border-color: hsla(var(--primary) / 0.25);
  box-shadow: 0 0 35px hsla(var(--primary) / 0.05);
}

.admin-login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.admin-login-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.admin-login-glow-logo {
  color: hsl(var(--primary));
  text-shadow: 0 0 15px hsla(var(--primary) / 0.5);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.admin-login-tip {
  font-family: var(--font-mono);
  font-size: 10px;
  color: hsl(var(--muted-foreground));
  background-color: hsla(var(--primary) / 0.04);
  border: 1px dashed hsla(var(--primary) / 0.15);
  padding: 0.65rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  text-align: center;
}





