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

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

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

/* Matrix Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #00ff88;
    overflow: hidden;
    pointer-events: none;
}

/* Header */
.terminal-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid #00ff88;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.terminal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-terminal {
    font-size: 18px;
    font-weight: bold;
}

.prompt-symbol {
    color: #00ccff;
}

.domain {
    color: #00ff88;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border: 1px solid transparent;
}

.nav-link:hover {
    border: 1px solid #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

/* Terminal Window */
.terminal-window {
    background: #0a0a0a;
    border: 2px solid #00ff88;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
}

.terminal-title-bar {
    background: #1a1a1a;
    padding: 10px 15px;
    border-bottom: 1px solid #00ff88;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px 8px 0 0;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-red { background: #ff5f56; }
.btn-yellow { background: #ffbd2e; }
.btn-green { background: #27c93f; }

.terminal-title {
    color: #00ccff;
    font-size: 14px;
}

.terminal-body {
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
}

/* Terminal Text Styles */
.terminal-line {
    margin: 5px 0;
}

.prompt {
    color: #00ccff;
}

.command {
    color: #00ff88;
}

.output-line {
    color: #b0b0b0;
    margin: 3px 0;
}

.output-line.success {
    color: #00ff88;
}

.output-line.error {
    color: #ff6b6b;
}

.output-line.info {
    color: #00ccff;
}

.output-line.tool-item {
    color: #b0b0b0;
    padding: 5px 0;
}

.mirror-link {
    color: #00ccff;
    font-weight: bold;
    background: rgba(0, 204, 255, 0.1);
    padding: 5px 10px;
    display: inline-block;
    margin: 5px 0;
}

.terminal-link {
    color: #00ccff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terminal-link:hover {
    color: #00ff88;
}

.cursor-blink {
    display: inline-block;
    width: 10px;
    height: 20px;
    background: #00ff88;
    animation: blink 1s infinite;
}

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

/* Sections */
.hero-terminal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.section-terminal {
    padding: 60px 0;
}

/* Footer */
.terminal-footer {
    padding: 40px 0;
    border-top: 2px solid #00ff88;
    margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .terminal-nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-link {
        text-align: center;
    }

    .terminal-body {
        padding: 20px;
        font-size: 14px;
    }

    .logo-terminal {
        font-size: 14px;
    }
}

/* Article Styles */
article.terminal-article {
    padding-top: 100px;
    padding-bottom: 60px;
}

article.terminal-article h1 {
    font-size: 36px;
    color: #00ff88;
    margin-bottom: 20px;
    border-bottom: 2px solid #00ff88;
    padding-bottom: 10px;
}

article.terminal-article h2 {
    font-size: 28px;
    color: #00ccff;
    margin: 30px 0 15px;
}

article.terminal-article h3 {
    font-size: 22px;
    color: #00ff88;
    margin: 20px 0 10px;
}

article.terminal-article p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 15px;
}

article.terminal-article strong {
    color: #00ff88;
}

article.terminal-article ul,
article.terminal-article ol {
    color: #b0b0b0;
    margin-left: 30px;
    margin-bottom: 20px;
}

article.terminal-article li {
    margin: 10px 0;
    line-height: 1.8;
}

article.terminal-article a {
    color: #00ccff;
    text-decoration: underline;
}

article.terminal-article a:hover {
    color: #00ff88;
}

.info-box {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.info-box p {
    color: #00ff88;
    margin: 0;
}

.warning-box {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.warning-box p {
    color: #ff6b6b;
    margin: 0;
}
