/* Custom Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Roboto+Mono:wght@400;700&display=swap');

:root {
    --neon-blue: #00f3ff;
    --neon-green: #0aff0a;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: #e2e8f0;
    overflow-x: hidden;
}

h1, h2, h3, .font-mono {
    font-family: 'Roboto Mono', monospace;
}

/* Neon Glow Effects */
.glow-text-blue {
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.7), 0 0 20px rgba(0, 243, 255, 0.5);
}

.glow-text-green {
    text-shadow: 0 0 10px rgba(10, 255, 10, 0.7), 0 0 20px rgba(10, 255, 10, 0.5);
}

.glow-box-blue {
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    transition: box-shadow 0.3s ease;
}

.glow-box-blue:hover {
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.6);
}

.glow-box-green {
    box-shadow: 0 0 15px rgba(10, 255, 10, 0.3);
    transition: box-shadow 0.3s ease;
}

.glow-box-green:hover {
    box-shadow: 0 0 25px rgba(10, 255, 10, 0.6);
}

/* Button Styles */
.btn-neon {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-neon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-neon:hover::after {
    left: 100%;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}
