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

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

/* Orange text selection */
::selection {
    background: #ff6600;
    color: #000000;
}

::-moz-selection {
    background: #ff6600;
    color: #000000;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.terminal-window {
    max-width: 900px;
    width: 100%;
    background: #0a0a0a;
    border: 2px solid #ff6600;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
    animation: fadeIn 0.5s ease-out;
}

.terminal-header {
    background: #1a1a1a;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ff6600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #333;
}

.terminal-button.red {
    background: #ff5555;
}

.terminal-button.yellow {
    background: #ffaa00;
}

.terminal-button.green {
    background: #00ff00;
}

.terminal-title {
    margin-left: auto;
    color: #ff6600;
    font-size: 0.9rem;
    font-weight: bold;
}

.terminal-body {
    padding: 2rem;
    min-height: 500px;
}

.prompt-line {
    margin: 1.5rem 0 0.5rem 0;
    color: #00ff00;
}

.prompt {
    color: #ff6600;
    font-weight: bold;
    margin-right: 0.5rem;
}

.command {
    color: #ffaa00;
}

.output {
    margin: 0.5rem 0 1rem 1.5rem;
    color: #cccccc;
}

.logo {
    color: #ff6600;
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
    animation: glowPulse 2s ease-in-out infinite;
}

.tagline {
    color: #00ff00;
    font-size: 1rem;
    margin-top: 1rem;
}

.hero-text {
    font-size: 1.2rem;
    color: #ffaa00;
}

.features {
    margin: 1rem 0;
}

.feature-line {
    margin: 1rem 0;
}

.feature-key {
    color: #00ff00;
    font-weight: bold;
}

.feature-title {
    color: #ff6600;
    font-weight: bold;
}

.feature-desc {
    color: #999999;
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.status-line {
    margin: 0.5rem 0;
    color: #00ff00;
}

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

.social-links p {
    margin: 0.5rem 0;
}

.link-prefix {
    color: #666666;
}

.link {
    color: #ff6600;
    text-decoration: none;
    border-bottom: 1px dotted #ff6600;
    transition: all 0.2s ease;
}

.link:hover {
    color: #ffaa00;
    border-bottom: 1px solid #ffaa00;
    text-shadow: 0 0 5px rgba(255, 170, 0, 0.5);
}

.cursor-line {
    margin-top: 2rem;
}

.cursor {
    color: #00ff00;
    animation: blink 1s step-end infinite;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 102, 0, 0.8), 0 0 30px rgba(255, 102, 0, 0.4);
    }
}

@media (max-width: 768px) {
    .terminal-window {
        border-width: 1px;
    }
    
    .terminal-body {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .terminal-title {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .terminal-body {
        padding: 0.75rem;
        font-size: 0.75rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .terminal-header {
        padding: 0.5rem 0.75rem;
    }
    
    .terminal-button {
        width: 10px;
        height: 10px;
    }
}
