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

body {
    font-family: 'Inter', sans-serif;
    background-color: #030712;
    color: #e0e0e0;
    overflow-x: hidden;
}

.orbitron {
    font-family: 'Orbitron', sans-serif;
}

.gradient-text {
    background: linear-gradient(90deg, #0ea5e9, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.accent-text {
    color: #FFC800;
}

.card {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.5);
}

.accent-card {
    border: 1px solid rgba(255, 200, 0, 0.2);
}

.accent-card:hover {
    box-shadow: 0 10px 25px rgba(255, 200, 0, 0.3);
    border: 1px solid rgba(255, 200, 0, 0.5);
}

.glow {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.accent-glow {
    box-shadow: 0 0 15px rgba(255, 200, 0, 0.5);
}

.roadmap-item {
    position: relative;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #3B82F6, #60A5FA);
}

.roadmap-item:last-child::before {
    height: 50%;
}

.roadmap-dot {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #3B82F6, #60A5FA);
}

.roadmap-dot.completed {
    background: #FFC800;
}

.roadmap-item.completed h4 {
    text-decoration: line-through;
    opacity: 0.8;
}

.roadmap-item.completed p {
    opacity: 0.7;
}

.grid-pattern {
    background-image: 
        radial-gradient(rgba(59, 130, 246, 0.15) 2px, transparent 2px);
    background-size: 30px 30px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

.float-delay-1 {
    animation-delay: 1s;
}

.float-delay-2 {
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

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

.cyber-grid {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
}

.cyber-border {
    position: relative;
}

.cyber-border::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3B82F6, #60A5FA, #3B82F6);
    background-size: 400%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
    animation: glowing 20s linear infinite;
}

.accent-border::after {
    background: linear-gradient(45deg, #FFC800, #FFD333, #FFC800);
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.hex-pattern {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%233B82F6' fill-opacity='0.1' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.completed {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.in-progress {
    background-color: rgba(255, 200, 0, 0.2);
    color: #FFC800;
    border: 1px solid rgba(255, 200, 0, 0.3);
}

.status-badge.planned {
    background-color: rgba(99, 102, 241, 0.2);
    color: #818CF8;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.accent-btn {
    background: #FFC800;
    color: #111827;
}

.accent-btn:hover {
    background: #E6B400;
}

.badge-container {
    display: flex;
    gap: 8px;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
}