.cc-home-terminal-section{
    padding:80px 5%;
    background:#050505;
}

.cc-terminal-wrapper{
    background:#070B0E;
    border:1px solid rgba(0,255,178,.18);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 0 40px rgba(0,255,178,.06);
    max-width:1400px;
    margin:auto;
}

.cc-terminal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 24px;
    border-bottom:1px solid rgba(255,255,255,.06);
    background:#0C1014;
    color:#ffffff;
    font-family:Arial,sans-serif;
}

.cc-active{
    color:#00FFB2;
    font-weight:bold;
}

.cc-terminal-body{
    height:420px;
    overflow-y:auto;
    padding:24px;
    font-family:monospace;
    font-size:14px;
    color:#B7C3CF;
    background:#05080A;
}

.cc-terminal-line{
    margin-bottom:12px;
    animation:fadeIn .4s ease;
}

.cc-green{
    color:#00FFB2;
}

.cc-cyan{
    color:#00D9FF;
}

.cc-red{
    color:#FF4D5A;
}

.cc-gold{
    color:#C6A972;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(6px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
