.tech-stack-container {
    width: fit-content;
    margin-top: 2.5rem;
    /* border: 2px dashed cyan; */
}
.stack {
    width: fit-content;
    /* border: 3px solid salmon; */
    margin-left: 160px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;

}
.stack span {
    display: inline-block;
    color: #FFFFFF;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease-in-out;
}
.skills-container {
    width: 100%;
    max-width: 700px;
    margin: 40px auto;
    /* border: 1px solid #1c66bb; */

}
.skill-item {
    margin-bottom: 25px;
    /* border: 2px solid yellowgreen; */
    margin-left: 160px;
}
.skill-details {
    display: flex;
    margin-bottom: 8px;
    justify-content: space-between;
    /* border: 2px solid slategray; */
}
.skill-name {
    font-size: 1rem;
    font-weight: 600;
    color: #c9d1d9;
}
.level {
    font-size: 0.9rem;
    font-weight: 600;
    color: #8b949e;
}
.progress-bar-ctn {
    width: 100%;
    height: 12px;
    background-color: #21262d;
    border-radius: 999px;
    border: 1px solid #30363d;
    overflow: hidden;

}
.progress-bar {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #18d318, #dff70aa1);
    position: relative;
    overflow: hidden;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: scanner-sweep 2.5s linear infinite;
}
@keyframes scanner-sweep {
    0% {
        transform: translateX(-20px);
    }

    100% {
            transform: translateX(700px);
        
    }
}
.terminal {
    margin-top: 20px;
    border-radius: 8px;
    /* box-shadow: 0 0 15px #33ff33; */
    width: 100%;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    /* border: 2px solid red; */
    min-height: 150px;
    
    

}
#gameArea {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin-left: 30px;

}

.terminal h4 {
    color: #33ff33;

}
#gameArea input,
#gameArea button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #111;
    color: #33ff33;
    border: 1px solid #33ff33;
    border-radius: 5px;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;


}
#gameArea button {
        width: 50%;
       

}
#gameArea button:hover {
    background-color: #33ff33;
    color: #000;
    cursor: pointer;
}
.input-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    flex-direction: row;
    align-items: center;
    /* border: 2px solid lemonchiffon; */
}
