/* Custom Glassmorphism & Animations */

/* Base Styles */
body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 32px;
    padding: 2.5rem; /* Default padding increased */
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    border-radius: 32px;
    padding: 2.5rem; /* Increased padding for rounder corners */
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.15);
    transform: translateY(-5px);
}

.glass-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding-left: 1.5rem; /* More breathing room for text */
    padding-right: 1.5rem;
}

.glass-input:focus {
    outline: none;
    border-color: rgba(30, 144, 255, 0.5);
    box-shadow: 0 0 0 1px rgba(30, 144, 255, 0.5);
}

/* Button Styles */
.btn-primary {
    background: #1E90FF;
    color: white;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
    border-radius: 9999px;
    padding: 1rem 2.5rem; /* Generous padding for pill shape */
}

.btn-primary:hover {
    background: #0073E6;
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    border-radius: 9999px;
    padding: 1rem 2.5rem; /* Generous padding for pill shape */
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 8s ease-in-out infinite 2s;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050505; 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1E90FF; 
}

/* Utility to hide scrollbar but keep functionality if needed */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
