body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #13225B;
}

/* SECTION WRAPPER */
.uc-section {
    align-items: center;
    justify-content: center;
}

/* MAIN BOX (like your image card) */
.uc-container {
    background: linear-gradient(135deg, #1F2D63, #13225B);
    padding: 320px;
    align-items: center;
    gap: 40px;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.5),
        inset 0 0 60px rgba(255,255,255,0.03);
}

/* LEFT */
.uc-left {
    max-width: 520px;
}

.uc-left h1 {
    font-size: 52px;
    line-height: 1.3;
    color: #ffffff;
}

.uc-left p {
    margin: 20px 0;
    color: rgba(255,255,255,0.7);
}

/* PROGRESS BAR */
.progress {
    position: relative;
    width: 260px;
    height: 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
}

/* GOLD BAR */
.bar {
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, #DE9700, #ffc94d);
    border-radius: 20px;

    box-shadow: 0 0 10px #DE9700;
}

/* TEXT */
.progress span {
    position: absolute;
    right: 10px;
    top: -25px;
    font-size: 12px;
    color: #DE9700;
}

/* RIGHT IMAGE */
.uc-right img {
    width: 550px;
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .uc-container {
        flex-direction: column;
        text-align: center;
        padding: 80px;
    }

    .uc-left h1 {
        font-size: 36px;
    }

    .uc-right img {
        width: 400px;
    }
}

@media (max-width: 576px) {

    .uc-left h1 {
        font-size: 26px;
    }

    .uc-left p {
        font-size: 14px;
    }

    .uc-container {
        padding: 70px;
    }
}