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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
}

.metro-card, .metro-btn, .metro-nav-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metro-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.metro-btn {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    border: none;
    border-radius: 0.75rem;
    color: white;
    cursor: pointer;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

.metro-btn:hover {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
    transform: translateY(-1px);
}

.metro-btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.metro-btn-primary:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.glow-primary {
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.glow-secondary {
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.3);
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
    border-radius: 4px;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

@keyframes metro-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.metro-pulse {
    animation: metro-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.glass-effect {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #0ea5e9 0%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .metro-card {
        padding: 1rem;
    }
    
    h1, h2, h3 {
        font-size: 90%;
    }
}

.dark .metro-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}