﻿/* ===========================
   Font & Strukturë bazë
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.vmx-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    animation: vmxFadeIn 0.4s ease;
}

.vmx-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    width: 95%;
    max-width: 760px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    animation: vmxSlideUp 0.4s ease;
}

/* ===========================
   Header
=========================== */
.vmx-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.vmx-logo {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: #f2f6ff;
    padding: 6px;
    object-fit: contain;
    border: 1px solid #e1e7ff;
}

.vmx-info h3 {
    margin: 0;
    font-size: 1.4rem;
    color: floralwhite;
    font-weight: 700;
}

.vmx-info p {
    margin: 0;
    color: navajowhite;
    font-size: 0.9rem;
}

/* ===========================
   Teksti hyrës
=========================== */
.vmx-intro {
    text-align: left;
    font-size: 1.05rem;
    color: wheat;
    margin: 18px 0 25px;
    line-height: 1.5;
}

/* ===========================
   Kartat
=========================== */
.vmx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    margin-bottom: 25px;
}

.vmx-report {
    background: #f9fbff;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #e1e7ff;
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
}

    .vmx-report:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    }

    .vmx-report h3 {
        color: #1e40af;
        margin-bottom: 8px;
        font-weight: 700;
        font-size: 1.2rem;
        letter-spacing: 0.2px;
    }

.vmx-desc {
    color: #4b5563;
    font-size: 0.9rem;
    min-height: 45px;
    margin-bottom: 14px;
    line-height: 1.5;
}

/* ===========================
   Çmimet
=========================== */
.vmx-pricebox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.vmx-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.95rem;
}

.vmx-discount {
    background: #ef4444;
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 5px;
}

.vmx-final {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 8px 0 16px;
}

    .vmx-final.green {
        color: #059669;
    }

/* ===========================
   Butonat
=========================== */
.vmx-btn {
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

    .vmx-btn.korea {
        background: linear-gradient(90deg, #1e3a8a, #2563eb);
    }

    .vmx-btn.eu {
        background: linear-gradient(90deg, #0044aa, #007bff);
    }

    .vmx-btn.free {
        background: linear-gradient(90deg, #059669, #10b981);
    }

    .vmx-btn:hover {
        transform: scale(1.04);
        filter: brightness(1.1);
    }

/* ===========================
   Captcha
=========================== */
.vmx-captcha {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #e5e9f5;
}

/* ===========================
   Animacione
=========================== */
@keyframes vmxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes vmxSlideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}



.vm-toast {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #1e3a8a;
    color: white;
    padding: 14px 22px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.3s ease;
    z-index: 3000;
}

    .vm-toast.show {
        opacity: 1;
        transform: translateY(0);
    }

    .vm-toast.success {
        background: linear-gradient(90deg, #059669, #10b981);
    }

    .vm-toast.error {
        background: linear-gradient(90deg, #dc2626, #ef4444);
    }

    .vm-toast.info {
        background: linear-gradient(90deg, #2563eb, #3b82f6);
    }



.free-result-card {
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px 20px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: #111827;
}

    .free-result-card p {
        margin: 0;
        line-height: 1.6;
        font-family: "Inter", sans-serif;
    }









