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

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

.terminal {
    max-width: 1200px;
    margin: 0 auto;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.terminal-header {
    background: #2d2d2d;
    padding: 10px 15px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-title {
    color: #00ff00;
    font-weight: bold;
}

.terminal-controls {
    display: flex;
    gap: 10px;
}

.terminal-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    line-height: 12px;
    font-size: 10px;
}

.btn-minimize { background: #ffbd44; }
.btn-maximize { background: #00ca4e; }
.btn-close { background: #ff605c; }

.terminal-content {
    padding: 20px;
}

.terminal-prompt {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cursor {
    animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
    to { visibility: hidden; }
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.glitch-text {
    font-size: 3em;
    text-shadow: 
        0.05em 0 0 #ff0000,
        -0.05em -0.025em 0 #00ff00,
        0.025em 0.05em 0 #0000ff;
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0.05em 0 0 #ff0000, -0.05em -0.025em 0 #00ff00, 0.025em 0.05em 0 #0000ff; }
    15% { text-shadow: 0.05em 0 0 #ff0000, -0.05em -0.025em 0 #00ff00, 0.025em 0.05em 0 #0000ff; }
    16% { text-shadow: -0.05em -0.025em 0 #ff0000, 0.025em 0.05em 0 #00ff00, -0.05em -0.025em 0 #0000ff; }
    49% { text-shadow: -0.05em -0.025em 0 #ff0000, 0.025em 0.05em 0 #00ff00, -0.05em -0.025em 0 #0000ff; }
    50% { text-shadow: 0.025em 0.05em 0 #ff0000, 0.05em 0 0 #00ff00, 0 -0.05em 0 #0000ff; }
    99% { text-shadow: 0.025em 0.05em 0 #ff0000, 0.05em 0 0 #00ff00, 0 -0.05em 0 #0000ff; }
}

.navigation {
    margin-bottom: 30px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-link {
    color: #00ff00;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
}

.nav-link:hover {
    background: #333;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.content-section {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 1.5em;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.code-block {
    background: #000;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 15px;
    margin: 15px 0;
    overflow-x: auto;
}

.code-block pre {
    color: #00ff00;
    font-family: 'Courier New', monospace;
}

.attack-types h3 {
    color: #ff6b6b;
    margin: 15px 0 10px 0;
}

.error-message {
    background: #330000;
    border: 1px solid #ff0000;
    color: #ff6b6b;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.error-icon {
    color: #ff0000;
    font-weight: bold;
    margin-right: 10px;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
}

html {
    scroll-behavior: smooth;
}

