* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top, #0f2a55, #050c1c 70%);
    color: #e5f2ff;
    display: flex;
    justify-content: center;
    padding: 30px 15px;
}

/* ===== Main Container ===== */
.container {
    width: 100%;
    max-width: 420px;
}

/* ===== Header ===== */
.header {
    text-align: center;
    margin-bottom: 20px;
}

.robot {
    width: 68px;
    height: 68px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #3efcff, #0bbcd6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.header h1 {
    font-size: 20px;
    margin: 6px 0 4px;
    color: #7cf7ff;
}

.header p {
    font-size: 13px;
    opacity: .85;
}

/* ===== Stats ===== */
.stats {
    display: flex;
    justify-content: space-between;
    margin: 18px 0;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ffb300;
}

.stat small {
    font-size: 11px;
    opacity: .7;
}

/* ===== Card ===== */
.card {
    background: linear-gradient(180deg, #0e2246, #09162e);
    border-radius: 14px;
    /* padding: 18px; */
    box-shadow: 0 0 30px rgba(0,255,255,.08);
}

.card h2 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #7cf7ff;
}

.card h2 span {
    color: #ffd54f;
}

.card p {
    font-size: 12.5px;
    line-height: 1.6;
    opacity: .85;
}

/* ===== Input ===== */
.input-box {
    margin: 16px 0 12px;
}

.input-box input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: #04132b;
    color: #fff;
    font-size: 13px;
}

/* ===== Button ===== */
.btn {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(90deg, #25f0ff, #1a9fff);
    color: #002;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(0,255,255,.45);
}

.btn:hover {
    filter: brightness(1.1);
}

/* ===== Badges ===== */
.badges {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-top: 10px;
    opacity: .8;
}

/* ===== Testimonials ===== */
.testimonial {
    margin-top: 16px;
    border-left: 3px solid #ffb300;
    padding-left: 12px;
    font-size: 12.5px;
    line-height: 1.5;
}

.user {
    display: flex;
    align-items: center;
    margin-top: 6px;
    font-size: 11px;
    opacity: .8;
}

.avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1fd1ff;
    color: #002;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

/* ===== Footer ===== */
.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 10.5px;
    opacity: .55;
}

.footer a {
    color: #7cf7ff;
    text-decoration: none;
    margin: 0 6px;
}

#zhon {
    width: 100%; 
    border-radius: 10%;

    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 8, 20, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal-box {
    background: linear-gradient(180deg, #0e2246, #09162e);
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    width: 85%;
    max-width: 380px;
    box-shadow: 0 0 40px rgba(0,255,255,.25);
}

.modal-box h3 {
    margin: 14px 0 6px;
    font-size: 16px;
    color: #7cf7ff;
}

.modal-box p {
    font-size: 12.5px;
    opacity: .85;
}

/* ===== Loader ===== */
.loader {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid rgba(0,255,255,.2);
    border-top-color: #25f0ff;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/* ===== Result Styles ===== */
.result-title {
    font-size: 16px;
    color: #7cf7ff;
    margin-bottom: 10px;
}

.result-text {
    font-size: 12.5px;
    line-height: 1.6;
    opacity: .9;
    margin-bottom: 16px;
}

.whatsapp-btn {
    display: block;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(90deg, #25f0ff, #1a9fff);
    color: #002;
    box-shadow: 0 0 18px rgba(0,255,255,.45);
}

.whatsapp-btn:hover {
    filter: brightness(1.1);
}