/* Red Team Protocol Nexus - Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

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

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

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

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

/* Glow Effects */
.glow-red {
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.glow-red:hover {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

/* Terminal-like styling */
.terminal {
    background: #000000;
    border: 1px solid #dc2626;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    padding: 1rem;
    color: #00ff00;
}

/* Protocol Status Indicators */
.status-active {
    background: linear-gradient(45deg, #dc2626, #991b1b);
}

.status-complete {
    background: linear-gradient(45deg, #16a34a, #15803d);
}

.status-pending {
    background: linear-gradient(45deg, #d97706, #b45309);
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .mobile-stack {
        flex-direction: column;
    }
    
    .mobile-center {
        text-align: center;
    }
}

/* Loading Animation */
.loading-pulse {
    animation: pulse 2s infinite;
}

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