terminal { }

terminal .prompt {
    font-size: 16px;
    color: #6b7a8a;
    margin-bottom: 12px;
    min-height: 30px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    padding: 4px 16px;
    border-radius: 6px;
    display: inline-block;
    white-space: nowrap;
}

terminal .prompt .cmd {
    animation: pulseText 2s ease-in-out infinite;
}
terminal .prompt .output {
    color: #06b6d4;
    animation: pulseText 2.5s ease-in-out infinite alternate;
}

terminal .prompt .cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background: #f472b6;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
    margin-left: 4px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
@keyframes pulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

terminal h1 {
    font-size: clamp(44px, 10vw, 90px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

terminal h1 .gradient-text {
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite alternate;
}

terminal .desc {}

terminal .desc .tag {}

terminal .desc .tag:hover {
    transform: scale(1.05) translateY(-2px);
}

@keyframes gradientShift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(30deg); }
}


@media (max-width: 768px) {
    terminal .prompt {
        font-size: 14px;
        padding: 2px 12px;
        white-space: normal;
    }
}
@media (max-width: 480px) {
    terminal .prompt {
        font-size: 12px;
        padding: 2px 10px;
        white-space: normal;
        display: inline;
        align-items: center;
    }

    terminal .prompt .cursor {
        width: 8px;
        height: 16px;
    }
}
