* {
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    background: #f5f7fb;
}

.top-bar {
    background: #fff;
    padding: 12px 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.top-bar img {
    height: 28px;
}

.blur {
    filter: blur(6px);
    pointer-events: none;
}

/* POPUP */
.popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    width: 360px;
    background: #fff;
    border-radius: 12px;
    padding: 26px 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.popup-icon {
    width: 56px;
    height: 56px;
    background: #5b8fdc;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.popup-sub {
    font-size: 13px;
    color: #8f8f8f;
    margin-bottom: 14px;
}

/* CAPTCHA FIX */
.captcha-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.captcha-inner {
    direction: ltr;
    text-align: left;
}

/* IMPORTANT */
.g-recaptcha {
    transform: none !important;
}

/* BUTTON */
.popup-btn {
    width: 100%;
    padding: 11px;
    background: #f5f5f5;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
}

/* CONTENT */
.main-container {
    max-width: 500px;
    margin: 60px auto;
}

.title {
    text-align: center;
    margin-bottom: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.label {
    color: #888;
    font-size: 13px;
}

.value {
    font-weight: bold;
}

.status {
    background: #e6f4ea;
    color: green;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}



/* FLOAT BUTTON */
.help-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 52px;
    height: 52px;
    background: #2d4ea2;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FOOTER */
/* ================= FOOTER FIX ================= */

.footer {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 40px;
}

/* MAIN LOGO */
.footer-logo-main {
    height: 40px;
    margin-bottom: 15px;
}

/* TEXT */
.footer p {
    margin: 6px 0;
    font-size: 13px;
    color: #6f6f6f;
}

/* LANGUAGE */
.footer .lang {
    margin-top: 10px;
    color: #2d4ea2;
}

/* LOGO ROW */
.footer-logos {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* BOTTOM LOGOS */
.footer-logos img {
    height: 45px;
}

.footer-bg {
    width: 100%;
    background: #ffffff;
    padding: 40px 0;
}


.copy-btn {
    width: 100%;
    padding: 12px;
    background: #2d4ea2;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

/* icon spacing */
.copy-icon {
    margin-right: 6px;
}

/* success state */
.copy-btn.copied {
    background: #28a745; /* green */
}



