
/* Custom CSS for Aurora Financial Nexus */

/* Font Family */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #131b2e;
  margin: 0;
  overflow-x: hidden;
}

/* Font Space Grotesk */
.font-space {
  font-family: 'Space Grotesk', sans-serif;
}

/* Background Animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.bg-animate {
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

/* Cyberpunk Background */
.cyberpunk-bg {
  background-color: #131b2e;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(67, 124, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(124, 45, 237, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #131b2e 0%, #1a2235 100%);
  position: relative;
}

.cyberpunk-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(124, 45, 237, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(124, 45, 237, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

/* Neo-morphic Card Style */
.neo-card {
  box-shadow: 
    0 4px 24px -1px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.shadow-neon {
  box-shadow: 
    0 0 10px rgba(59, 130, 246, 0.1),
    0 0 30px rgba(124, 58, 237, 0.05),
    0 0 50px rgba(59, 130, 246, 0.025);
}

/* Input Glow Effect */
.input-glow {
  transition: all 0.3s ease;
}

.input-glow:focus {
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.3), 0 0 10px rgba(56, 189, 248, 0.2);
}

/* Cyberpunk Button */
.cybr-btn {
  --primary: #0974f1;
  --shadow-primary: #1b71c5;
  --background-primary: #001f3f;
  --text: hsl(0, 0%, 100%);
  --font-size: 1rem;
  --shadow-primary-hue: 180;
  --label-size: 0.5rem;
  --shadow-secondary-hue: 60;
  --clip: polygon(0 0, 100% 0, 100% 100%, 0.2rem 100%, 0 calc(100% - 0.2rem));
  --border: 0.05rem;
  --shimmy-distance: 5;
  --clip-one: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  --clip-two: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  --border-width: 0.05rem;
  
  color: var(--text);
  font-size: var(--font-size);
  font-weight: 500;
  background-color: var(--background-primary);
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--shadow-primary) 100%);
  border-radius: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 0;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-image 0.3s ease;
  position: relative;
}

.cybr-btn:hover {
  --primary: #38bdf8;
  --shadow-primary: #0ea5e9;
}

.cybr-btn:active {
  --primary: #0284c7;
  --shadow-primary: #075985;
}

.cybr-btn__glitch {
  position: absolute;
  top: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
  right: calc(var(--border-width) * -1);
  bottom: calc(var(--border-width) * -1);
  background: var(--shadow-primary);
  clip-path: var(--clip-two);
  z-index: -1;
}

.cybr-btn:hover .cybr-btn__glitch {
  animation: glitch 0.4s ease-in-out;
}

.cybr-btn__tag {
  position: absolute;
  padding: 0.1rem 0.5rem;
  top: -0.75rem;
  right: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--text);
  font-size: var(--label-size);
  font-weight: 600;
  background: var(--primary);
  border-radius: 0.2rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@keyframes glitch {
  0% {
    clip-path: var(--clip-one);
  }
  2%, 8% {
    clip-path: var(--clip-two);
    transform: translate(calc(var(--shimmy-distance) * -1%), 0);
  }
  6% {
    clip-path: var(--clip-two);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  9% {
    clip-path: var(--clip-two);
    transform: translate(0, 0);
  }
  10% {
    clip-path: var(--clip-one);
  }
  100% {
    clip-path: var(--clip-one);
  }
}

/* Custom Switch Toggle */
.checkbox-wrapper-6 {
  display: inline-block;
  position: relative;
}

.checkbox-wrapper-6 .tgl {
  display: none;
}

.checkbox-wrapper-6 .tgl-btn {
  display: block;
  width: 36px;
  height: 16px;
  cursor: pointer;
  position: relative;
  border-radius: 999px;
  background: #304159;
  transition: all 0.4s ease;
}

.checkbox-wrapper-6 .tgl-btn:after {
  position: absolute;
  left: 0;
  top: -2px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2d3748;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  content: '';
  transition: all 0.3s ease;
}

.checkbox-wrapper-6 .tgl:checked + .tgl-btn {
  background: rgba(56, 189, 248, 0.7);
}

.checkbox-wrapper-6 .tgl:checked + .tgl-btn:after {
  background: #38bdf8;
  transform: translateX(16px);
}

/* Social Login Buttons */
.social-btn {
  transition: all 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Animated Pulse Effect */
@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.delay-700 {
  animation-delay: 0.7s;
}

.delay-1000 {
  animation-delay: 1s;
}

/* Keep existing code from line 129 to 499 */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #374151;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #9CA3AF;
  transition: .4s;
}

input:checked + .slider {
  background-color: #3B82F6;
}

input:checked + .slider:before {
  transform: translateX(24px);
  background-color: white;
}

.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Card Hover Effects */
.hover-lift {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #1F2937;
}

::-webkit-scrollbar-thumb {
  background: #3B82F6;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2563EB;
}

/* Active Navigation Item Glow */
.nav-item-active {
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

/* Tooltip Styling */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: #0F172A;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #0F172A transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Card background with light gradient */
.card-gradient {
  background-image: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(79, 70, 229, 0.15) 100%);
}

/* Chip decoration for cards */
.card-chip {
  position: relative;
}

.card-chip::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  top: -15px;
  left: 20px;
}

/* Notification Badge */
.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  padding: 0.1em 0.35em;
  border-radius: 50%;
  background-color: #EF4444;
  color: white;
  font-size: 0.75rem;
}

/* New styles for the updated design */
.app-container {
  min-height: 100vh;
  background-color: #131b2e;
  display: flex;
  padding: 2rem;
}

.card-dark {
  background-color: #0f1627;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.transfer-details {
  padding: 1.5rem;
}

.tab-underline {
  position: relative;
  padding-bottom: 0.5rem;
  color: #718096;
}

.tab-active {
  color: #4299e1;
  border-bottom: 2px solid #4299e1;
}

.tab-underline:hover {
  color: #a0aec0;
}

.transfer-type-card {
  background-color: #1a2235;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
}

.transfer-type-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d3748;
  font-weight: 500;
}

.contact-name {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.new-contact {
  background-color: #2563eb;
  color: white;
}

.form-input {
  width: 100%;
  background-color: #1a2235;
  border: 1px solid #2d3748;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: white;
}

.form-input:focus {
  outline: none;
  border-color: #4299e1;
  box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.2);
}

.blue-button {
  background-color: #2563eb;
  color: white;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
}

.blue-button:hover {
  background-color: #1d4ed8;
}

.payment-method {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background-color: #1a2235;
  margin-bottom: 0.75rem;
}

.payment-logo {
  width: 40px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #4a5568;
  display: inline-block;
  position: relative;
}

.radio-custom.selected {
  border-color: #4299e1;
}

.radio-custom.selected::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #4299e1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.summary-card {
  padding: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.divider {
  height: 1px;
  background-color: #2d3748;
  margin: 1rem 0;
}

.add-payment-method {
  display: flex;
  align-items: center;
  color: #4299e1;
  font-size: 0.875rem;
  cursor: pointer;
}

.add-payment-method svg {
  margin-right: 0.5rem;
}
