/* XRP Vault - Clean Modern Styles */

/* Import modern font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --xrp-primary: #00D4FF;
  --xrp-secondary: #0066FF;
  --xrp-glow: 0 0 30px rgba(0, 212, 255, 0.2);
}

/* Modern font */
* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

html {
  scroll-behavior: smooth;
}

/* Subtle background enhancement */
body {
  background-attachment: fixed !important;
}

/* Logo glow effect */
img[src*="app-icon"],
img[src*="favicon"] {
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
  transition: all 0.3s ease;
}

img[src*="app-icon"]:hover,
img[src*="favicon"]:hover {
  filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.6));
  transform: scale(1.03);
}

/* Screenshot improvements */
img[src*="screenshot"] {
  border-radius: 20px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.3s ease !important;
}

img[src*="screenshot"]:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5) !important;
}

/* Button hover effects */
button:hover,
a[class*="bg-primary"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3) !important;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0e17;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00D4FF, #0066FF);
  border-radius: 4px;
}

/* Preserve gradient text */
.text-transparent,
.bg-clip-text,
[class*="bg-clip-text"] {
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  padding-bottom: 0.1em !important;
  line-height: 1.2 !important;
}

/* Input focus effects */
input:focus, 
textarea:focus {
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2) !important;
  outline: none !important;
}



