/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #C6F702;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C6F702;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #C6F702 #000000;
}

/* Global Styles */
body {
    background: linear-gradient(135deg, #000000 0%, #1a1a00 100%);
}

/* Card Hover Effects - Subtle */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-2px);
    border-color: #C6F702 !important;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, #C6F702 0%, #C6F702 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow Effect - Minimal */
.glow-minimal {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

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

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

/* Pulse Animation */
@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.pulse-soft {
    animation: pulse-soft 3s ease-in-out infinite;
}
