/* Custom Glass Morphism Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Custom Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Neon Green Glow Effects */
.neon-glow {
    box-shadow: 0 0 20px rgba(52, 245, 90, 0.3);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Button Hover Effects */
.btn-hover-lift {
    transition: all 0.3s ease;
}

.btn-hover-lift:hover {
    transform: translateY(-2px);
}

/* V Logo Animation */
.v-logo {
    position: relative;
}

.v-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid #34F55A;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 245, 90, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(52, 245, 90, 0);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(52, 245, 90, 0);
    }
}

/* Enhanced Focus States */
input:focus, button:focus {
    outline: none;
    ring: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #34F55A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2CD44F;
}

/* Responsive Typography */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
}

/* Gradient Background Animation */
.bg-gradient-animate {
    background: linear-gradient(-45deg, #ffffff, #e0f2fe, #f0f9ff, #ffffff);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}