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

body {
    background-color: #0c0c0c;
    color: #00ff00;
    font-family: 'Ubuntu Mono', 'Courier New', 'Consolas', monospace;
    font-size: 16px;
    line-height: 1.6;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terminal {
    max-width: 800px;
    width: 100%;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    position: relative;
}

.terminal::before {
    content: '';
    display: block;
    background: linear-gradient(90deg, #2d2d2d 0%, #1e1e1e 100%);
    height: 35px;
    border-bottom: 1px solid #0a0a0a;
    position: relative;
}

.terminal::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background-color: #ff5f56;
    border-radius: 50%;
    position: absolute;
    top: 51px;
    left: 15px;
    box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27c93f;
}

.terminal-content {
    padding: 50px 30px 30px;
}

.terminal-title {
    color: #00ff00;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.terminal-title::before {
    content: 'ssaic@portfolio:~$ ';
    color: #00ff00;
}

.terminal-line {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.terminal-line::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #00ff00;
}

.terminal-link {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.terminal-link:hover {
    color: #00ff00;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.terminal-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #00ff00;
    transition: width 0.3s ease;
}

.terminal-link:hover::after {
    width: 100%;
}

/* Blinking cursor effect */
@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 18px;
    background-color: #00ff00;
    margin-left: 5px;
    animation: blink 1s infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }
    
    .terminal-content {
        padding: 40px 20px 20px;
    }
    
    .terminal-title {
        font-size: 16px;
    }
    
    .terminal-line {
        font-size: 14px;
    }
}