@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    background: linear-gradient(135deg, #0d1117, #1f2937);
    font-family: 'Orbitron', sans-serif;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

.card {
    background: linear-gradient(145deg, #6d28d9, #a855f7);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 0 30px rgba(139, 92, 246, 0.5);
}

.neon-glow {
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8), 0 0 20px rgba(139, 92, 246, 0.4);
    border-color: #8b5cf6;
}

.neon-text {
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.8), 0 0 10px rgba(139, 92, 246, 0.4);
}

button, a[class*="bg-"] {
    border-radius: 10px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    background: linear-gradient(145deg, #7c3aed, #a855f7);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

button:hover, a[class*="bg-"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.6);
}

nav a {
    transition: color 0.3s ease, transform 0.2s ease;
}

nav a:hover {
    color: #d946ef;
    transform: scale(1.1);
}

input, select {
    transition: border 0.3s ease, box-shadow 0.3s ease;
    background: #1f2937;
    border: 1px solid #4b5563;
}

input:focus, select:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.futuristic-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid transparent;
    border-top-color: #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
}