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

body {
    font-family: 'Source Code Pro', monospace;
    background-color: #1a1a1a;
    color: #00ff00;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.terminal {
    background-color: #000000;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
    width: 100%;
    max-width: 800px;
    min-height: 400px;
    border: 1px solid #00ff00;
}

.terminal.glow-active {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
    }
    50% {
        box-shadow: 0 15px 50px rgba(0, 255, 0, 0.6);
    }
}

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

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

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

.close {
    background-color: #ff5f56;
}

.minimize {
    background-color: #ffbd2e;
}

.maximize {
    background-color: #27ca3f;
}

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

.terminal-content {
    padding: 30px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.typing-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.quote {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-bottom: 10px;
}

.cursor {
    font-size: 24px;
    font-weight: 600;
    color: #00ff00;
    animation: blink 1s infinite;
    margin-left: 2px;
}

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

.intro {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
}

.email {
    font-size: 16px;
    font-weight: 400;
}

.email a {
    color: #00ff00;
    text-decoration: underline;
    text-decoration-color: #00ff00;
    text-decoration-thickness: 2px;
    transition: all 0.3s ease;
}

.email a:hover {
    color: #ffffff;
    text-decoration-color: #ffffff;
}

@media (max-width: 768px) {
    .terminal-content {
        padding: 20px;
    }
    
    .quote {
        font-size: 20px;
    }
    
    .intro {
        font-size: 16px;
    }
    
    .email {
        font-size: 14px;
    }
}
