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

body {
    background: #0a0a0a;
    color: #00ff41;
    font-family: 'Courier New', monospace;
    overflow-x: hidden;
    line-height: 1.6;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

header {
    border: 2px solid #00ff41;
    padding: 30px;
    margin: 40px 0;
    background: rgba(0, 255, 65, 0.03);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

h1 {
    font-size: 3em;
    text-shadow: 0 0 10px #00ff41;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.subtitle {
    color: #00cc33;
    font-size: 1.2em;
    letter-spacing: 3px;
}

.terminal {
    background: #000;
    border: 1px solid #00ff41;
    padding: 20px;
    margin: 20px 0;
    box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1);
}

.terminal::before {
    content: '> ';
    color: #ff0000;
}

.section {
    margin: 40px 0;
    padding: 30px;
    border-left: 3px solid #00ff41;
    background: rgba(0, 255, 65, 0.02);
}

h2 {
    color: #00ff41;
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #00ff41;
}

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

.card {
    background: #0d0d0d;
    border: 1px solid #00ff41;
    padding: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    transform: translateY(-5px);
}

.card h3 {
    color: #00ff41;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.status {
    color: #ff0000;
    font-weight: bold;
}

.link {
    color: #00ff41;
    text-decoration: none;
    border-bottom: 1px solid #00ff41;
    transition: all 0.3s;
}

.link:hover {
    color: #fff;
    text-shadow: 0 0 10px #00ff41;
}

.matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #00ff41;
    margin-top: 60px;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

.threat-level {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ff0000;
    color: #ff0000;
    margin: 5px 0;
    font-size: 0.9em;
}