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

body {
    font-family: 'Share Tech Mono', monospace;
    background: #000;
    color: #00ff00;
    overflow-x: hidden;
    min-height: 100vh;
}

#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

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

.terminal-header {
    background: #1a1a1a;
    border: 1px solid #00ff00;
    border-bottom: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-radius: 8px 8px 0 0;
}

.terminal-controls {
    display: flex;
    gap: 6px;
    margin-right: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

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

.terminal-content {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #00ff00;
    border-top: none;
    padding: 30px;
    min-height: 70vh;
    border-radius: 0 0 8px 8px;
    backdrop-filter: blur(10px);
}

.ascii-art {
    /* text-align: center; */
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    margin-bottom: 30px;
}

.intro-text {
    margin-bottom: 40px;
}

.typing-text {
    margin: 10px 0;
    font-size: 16px;
    animation: typing 2s steps(40, end);
    border-right: 2px solid #00ff00;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
}

.typing-text.delay-1 {
    animation-delay: 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.typing-text.delay-2 {
    animation-delay: 1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes typing {
    from { 
        width: 0;
        opacity: 1;
    }
    to { 
        width: fit-content;
        opacity: 1;
        border-right: none;
    }
}

.section-title {
    color: #00ff00;
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ff00;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 5px;
    display: inline-block;
}

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

.contact-info p {
    margin: 8px 0;
    font-size: 14px;
}

.matrix-link {
    color: #00ff00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.matrix-link:hover {
    text-shadow: 0 0 20px #00ff00;
    color: #ffffff;
}

.status-online {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.response-time {
    color: #ffff00;
}

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

.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.matrix-btn {
    background: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 12px 20px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.matrix-btn:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px #00ff00;
    text-shadow: none;
}

.matrix-btn:hover .btn-bracket {
    color: #000;
}

.btn-bracket {
    color: #00ff00;
    font-weight: bold;
}

.footer {
    margin-top: 40px;
}

.cursor-line {
    animation: blink 1s infinite;
}

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

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .ascii-art {
        font-size: 8px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .matrix-btn {
        width: 100%;
    }
}

.matrix-char {
    position: absolute;
    color: #00ff00;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    animation: fall linear infinite;
    text-shadow: 0 0 5px #00ff00;
}

@keyframes fall {
    0% {
        top: -100px;
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0;
    }
}