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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #87001d 0%, #ff5050 100%);
    min-height: 100vh;
    color: #FFFFFF;
    line-height: 1.6;
}

.cyber-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cyber-header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 3px solid #ff5050;
    margin-bottom: 40px;
}

.nexus-logo {
    margin-bottom: 20px;
}

.cyber-title {
    font-size: 2.5em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 80, 80, 0.8);
}

.cyber-subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    margin-bottom: 20px;
}

.status-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.status-indicator.online {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.status-text {
    font-weight: bold;
    font-size: 1.1em;
}

.welcome-section {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #ff5050;
}

.welcome-section h2 {
    color: #ff5050;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ff5050;
}

.info-card h3 {
    color: #ff5050;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.features-section {
    margin-bottom: 40px;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ff5050;
    font-size: 2em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #87001d;
}

.feature-item h4 {
    color: #ff5050;
    margin-bottom: 10px;
}

.links-container {
    margin-bottom: 40px;
}

.links-title {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff5050;
}

.links-description {
    text-align: center;
    margin-bottom: 25px;
    opacity: 0.9;
}

.mirrors-grid {
    display: grid;
    gap: 15px;
}

.cyber-link {
    display: block;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #87001d;
    border-radius: 8px;
    color: #FFFFFF;
    text-decoration: none;
    font-family: monospace;
    font-size: 1.1em;
    text-align: center;
    transition: all 0.3s ease;
    word-break: break-all;
}

.cyber-link:hover {
    background: rgba(255, 80, 80, 0.2);
    border-color: #ff5050;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 80, 80, 0.4);
}

.guide-section {
    margin-bottom: 40px;
}

.guide-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ff5050;
    font-size: 2em;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.step {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #87001d;
}

.step h4 {
    color: #ff5050;
    margin-bottom: 10px;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ff5050;
    font-size: 2em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #87001d;
}

.faq-item h4 {
    color: #ff5050;
    margin-bottom: 10px;
}

.security-alert {
    text-align: center;
    padding: 20px;
    background: rgba(255, 80, 80, 0.2);
    border: 1px solid #ff5050;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 1.1em;
}

.cyber-footer {
    text-align: center;
    padding: 30px;
    border-top: 2px solid #ff5050;
    opacity: 0.8;
    font-size: 0.9em;
}

.cyber-footer p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .cyber-title {
        font-size: 2em;
    }
    
    .info-grid,
    .features-grid,
    .guide-steps,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cyber-link {
        font-size: 1em;
        padding: 15px;
    }
    
    .welcome-section {
        padding: 20px;
    }
}