#mm-cookie-overlay {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(10,15,25,.45);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    z-index: 999999;

    opacity: 0;
    animation: mmFadeIn 0.4s ease forwards;
    animation-delay: 1.2s;
}

#mm-cookie-popup {

    width: min(900px, calc(100vw - 40px));

    background: rgba(18,22,32,.68);

    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);

    border: 1px solid rgba(255,255,255,.20);

    border-radius: 28px;

    padding: 50px;

    text-align: center;

    box-shadow:
        0 0 50px rgba(139,92,246,.25),
        0 0 120px rgba(139,92,246,.10);

    opacity: 0;
    transform: translateY(30px) scale(0.97);

    animation: mmPopupIn 0.55s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay: 1.4s;
}

.mm-cookie-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

#mm-cookie-popup h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

#mm-cookie-popup p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 35px;
}

.mm-cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mm-btn {
    border: 0;
    border-radius: 16px;

    padding: 18px 24px;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: all .25s ease;
}

.mm-btn-primary {
    background: #8b5cf6;
    color: #fff;
}

.mm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(139,92,246,.35);
}

.mm-btn-secondary {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.mm-btn-secondary:hover {
    background: rgba(255,255,255,.14);
}

.mm-btn-ghost {
    background: rgba(139,92,246,.08);
    border: 1px solid rgba(139,92,246,.25);
    color: rgba(255,255,255,.85);
}

.mm-btn-ghost:hover {
    background: rgba(139,92,246,.15);
    border-color: rgba(139,92,246,.40);
    color: #fff;
}

@keyframes mmFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmPopupIn {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
    #mm-cookie-popup {
        width: calc(100vw - 30px);
        padding: 30px;
        border-radius: 22px;
    }
    #mm-cookie-popup h2 { font-size: 28px; }
    #mm-cookie-popup p { font-size: 15px; line-height: 1.6; }
    .mm-btn { padding: 16px 20px; }
}

.mm-cookie-options {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
    margin: 30px 0;
}

.mm-cookie-option {
    display: block;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.03);
    transition: all .25s ease;
}

.mm-cookie-option:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.15);
}

.mm-cookie-option-top {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
}

.mm-cookie-description {
    margin-top: 10px;
    margin-left: 30px;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.5;
}

.mm-cookie-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

#mm-cookie-footer-link {
    display: inline-flex;
    align-items: center;

    width: fit-content;
    max-width: fit-content;

    cursor: pointer;
}