.mtcs-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(4px);
    z-index: 99999998;
}

.mtcs-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    width: 90%;
    max-width: 760px;
    background: #111111;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    z-index: 99999999;
}

@keyframes mtcsSlide {

    from{
        opacity:0;
        transform:translate(-50%,-30px);
    }

    to{
        opacity:1;
        transform:translate(-50%,0);
    }

}

.mtcs-left h2{

    margin:0 0 12px;
    color:#F5A623;
    font-size:28px;

}

.mtcs-left p{

    margin:0;
    line-height:1.7;
    font-size:15px;

}

.mtcs-buttons{

    display:flex;
    flex-direction:column;
    gap:12px;
    min-width:260px;

}

.mtcs-btn{

    text-decoration:none;
    text-align:center;
    padding:14px;
    border-radius:8px;
    font-weight:700;
    transition:.25s;

}

.mtcs-btn-primary{

    background:#F5A623;
    color:#111;

}

.mtcs-btn-primary:hover{

    background:#ffb733;

}

.mtcs-btn-secondary{

    border:1px solid #555;
    color:#fff;
    background:transparent;
    cursor:pointer;

}

.mtcs-btn-secondary:hover{

    background:#222;

}

@media(max-width:768px){

.mtcs-banner{

flex-direction:column;
text-align:center;

}

.mtcs-buttons{

width:100%;

}

}