/* ===== Cool Conclave Badge Generator ===== */
.cool-wrap{
    display:flex;
    gap:40px;
    align-items:flex-start;
    justify-content:center;
    flex-wrap:wrap;
    max-width:1200px;
    margin:40px auto;
    font-family:Arial,Helvetica,sans-serif;
}

.left{
    width:340px;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.left h2{
    margin:0 0 20px;
    color:#123c96;
    font-size:26px;
    font-weight:700;
    text-align:center;
}

.left label{
    display:block;
    margin:12px 0 6px;
    font-size:14px;
    color:#555;
    font-weight:600;
}

.left input[type="text"],
.left input[type="file"]{
    width:100%;
    padding:12px 15px;
    border:1px solid #d8d8d8;
    border-radius:8px;
    font-size:15px;
    box-sizing:border-box;
    background:#fff;
}

.left input:focus{
    border-color:#123c96;
    outline:none;
    box-shadow:0 0 8px rgba(18,60,150,.15);
}

#downloadBtn{
    width:100%;
    margin-top:25px;
    padding:14px;
    border:none;
    border-radius:8px;
    background:#123c96;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

#downloadBtn:hover{
    background:#0d2f77;
}

.right{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:flex-start;
}

#badgeCanvas{
    width:450px;
    max-width:100%;
    height:auto;
    border-radius:10px;
    border:1px solid #d9d9d9;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

@media(max-width:768px){
    .cool-wrap{
        flex-direction:column;
        align-items:center;
    }

    .left{
        width:100%;
        max-width:400px;
    }

    #badgeCanvas{
        width:100%;
    }
}
