/* =========================================
   MOBILE BLOCK – IFC2FEM (DESKTOP ONLY)
   STYLE MATCH: IFC2FEM GLOBAL CSS
========================================= */

.mobile-block {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999999;
}

.mobile-block.visible {
    display: flex;
}

.mobile-card {
    width: 520px;
    max-width: 92%;
    padding: 28px 30px 26px;
    border-radius: 50px;

    background: rgba(50,50,50,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow: 0 18px 55px rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.15);

    text-align: center;
    color: #dedede;
    font-family: "DIN Regular", "Inter", "Segoe UI", sans-serif;
}

/* Naslov */
.mobile-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #ffcc5c;
    margin: 0 0 16px 0;
    letter-spacing: 0.3px;
}

/* Tekst */
.mobile-card p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 18px 0;
    color: #e3e3e3;
}

/* Info box */
.mobile-note {
    background: rgba(255,255,255,0.06);
    border: 1px dashed rgba(255,255,255,0.25);
    border-radius: 25px;
    padding: 14px 18px;
    font-size: 14px;
    color: #d0d0d0;
    margin-bottom: 22px;
}

/* Dugme */
.mobile-btn {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.35);

    background: rgba(187,128,0,0.65);
    color: #e3e3e3;

    font-size: 18px;
    font-weight: 700;
    font-family: "DIN Regular", sans-serif;

    cursor: pointer;
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.mobile-btn:hover {
    background: rgba(187,128,0,0.95);
    transform: scale(1.02);
}
