@theme {
  --color-brand-primary: #4685ff;
  --color-brand-hover: #3b71d9;
}

body {
    background-color: #080d19;
    color: #f8fafc;
    background-image: radial-gradient(circle at 50% 0%, #111828 0%, #080d19 60%, #050810 100%);
    background-attachment: fixed;
}

.glass-highlight {
    background: linear-gradient(135deg, rgba(18, 24, 38, 0.8) 0%, rgba(8, 13, 25, 0.95) 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.03), 0 4px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.hover-lift:hover { transform: translateY(-3px); box-shadow: 0 10px 25px -5px rgba(70, 133, 255, 0.15); }

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Custom Inputs */
.g-input {
    background: #121826;
    border: 1px solid #1e293b;
    border-radius: 12px;
    color: white;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: all 0.3s ease;
    outline: none;
}
.g-input:focus {
    border-color: var(--color-brand-primary);
    box-shadow: 0 0 0 2px rgba(70, 133, 255, 0.2);
}
