#vibeplus-motd-backdrop {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(ellipse at top right, #ff3cac33 0%, #23234b 100%);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(2px);
}
.vibeplus-glass {
    background: rgba(30, 30, 60, 0.85);
    border-radius: 28px;
    box-shadow: 0 8px 32px 0 #ff3cac44, 0 1.5px 8px #23234b88;
    padding: 28px 16px 18px 16px;
    min-width: 220px;
    max-width: 94vw;
    width: 300px;
    color: #fff; font-family: 'Segoe UI', 'Arial', sans-serif;
    position: relative;
    animation: popIn 0.5s cubic-bezier(.68,-0.55,.27,1.55);
    border: 1.5px solid #ff3cac55;
    backdrop-filter: blur(12px);
}
@keyframes popIn {
    0% { transform: scale(0.7) rotateX(20deg); opacity: 0; }
    100% { transform: scale(1) rotateX(0); opacity: 1; }
}
.vibeplus-title {
    font-size: 1.35rem;
    font-weight: 900; letter-spacing: 2.5px;
    margin-bottom: 10px; text-align: center;
    line-height: 1.1;
}
.vibeplus-3d {
    background: linear-gradient(90deg, #ff3cac 0%, #784ba0 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-shadow:
        0 2px 8px #ff3cac88,
        0 4px 24px #784ba088,
        0 1px 0 #fff,
        2px 4px 12px #23234b88;
    filter: drop-shadow(0 2px 8px #ff3cac88);
    letter-spacing: 3px;
    font-size: 1.5rem;
}
.vibeplus-subtitle {
    font-size: 0.92rem;
    color: #ffb6ff; text-align: center; margin-bottom: 10px;
    font-weight: 500; letter-spacing: 1.2px;
    text-shadow: 0 1px 8px #784ba088;
}
.vibeplus-features {
    margin: 0; padding: 0; list-style: none;
    margin-bottom: 12px;
}
.vibeplus-feature {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.92rem; font-weight: 500; padding: 8px 0;
    position: relative;
    transition: background 0.2s;
}
.vibeplus-feature:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    left: 7px; right: 7px; bottom: 0;
    height: 1.5px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff3cac 0%, #ffb6ff 40%, #784ba0 100%);
    opacity: 0.35;
}
.vibeplus-feature-icon {
    font-size: 1.05rem;
    filter: drop-shadow(0 2px 6px #ff3cac55);
    transition: transform 0.2s;
    min-width: 1.05em;
}
.vibeplus-feature:hover .vibeplus-feature-icon {
    transform: scale(1.15) rotate(-8deg);
}
.vibeplus-tariff-btn {
    margin: 18px auto 0 auto; display: block; padding: 9px 22px;
    background: linear-gradient(90deg, #ff3cac 0%, #784ba0 100%);
    color: #fff; font-size: 0.98rem; font-weight: bold; border: none; border-radius: 20px;
    box-shadow: 0 4px 16px #ff3cac44; cursor: pointer; transition: transform 0.12s;
    letter-spacing: 1.2px;
    outline: none;
    position: relative;
    z-index: 1;
}
.vibeplus-glow {
    animation: vibeplus-glow 1.8s infinite alternate;
}
@keyframes vibeplus-glow {
    0% { box-shadow: 0 0 16px #ff3cac66, 0 0 32px #784ba044; }
    100% { box-shadow: 0 0 32px #ff3caccc, 0 0 64px #784ba088; }
}
.vibeplus-tariff-btn:hover {
    transform: scale(1.07);
    background: linear-gradient(90deg, #ff3cac 10%, #ffb6ff 90%);
    color: #23234b;
}
.vibeplus-close {
    position: absolute; top: 18px; right: 22px; font-size: 1.8rem;
    color: #ffb6ff; background: none; border: none; cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    z-index: 2;
    text-shadow: 0 2px 8px #ff3cac88;
}
.vibeplus-close:hover {
    color: #fff;
    transform: scale(1.2) rotate(10deg);
}
.vibeplus-price-block {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    margin-bottom: 14px; /* изменено: линия теперь сверху, нужен отступ снизу */
    margin-top: 0; /* убран верхний отступ */
    font-family: 'Montserrat', 'Segoe UI', 'Arial', sans-serif;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
}
.vibeplus-price {
    font-size: 1.65rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(90deg, #ff3cac 0%, #784ba0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 2px 8px #ff3cac55,
        0 1px 0 #fff,
        0 0 2px #784ba088;
    letter-spacing: 1.5px;
    margin-right: 0.15em;
    filter: drop-shadow(0 1px 4px #ff3cac55);
    border-radius: 8px;
    padding: 0 0.1em;
}
.vibeplus-currency {
    font-size: 1.25rem;
    font-weight: 800;
    margin-left: 0.1em;
    margin-right: 0.18em;
    color: #fff;
    filter: none;
    text-shadow: 0 1px 4px #ff3cac88, 0 0 2px #fff;
    vertical-align: middle;
    border-radius: 4px;
    padding-bottom: 2px;
    letter-spacing: 0.12em;
    transition: color 0.2s;
}
.vibeplus-per {
    font-size: 1.02rem;
    color: #bdbdbd;
    margin-left: 0.1em;
    font-weight: 600;
    letter-spacing: 0.1px;
    text-shadow: 0 1px 4px #784ba044;
    font-style: italic;
    padding-bottom: 2px;
    background: linear-gradient(90deg, #ffb6ff 0%, #784ba0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.85;
}
.vibeplus-price-block::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%; bottom: 100%; /* изменено: линия теперь над блоком */
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    margin-bottom: 7px; /* изменено: отступ вниз вместо вверх */
    background: linear-gradient(90deg, #ff3cac 0%, #ffb6ff 50%, #784ba0 100%);
    border-radius: 2px;
    opacity: 0.25;
}
.vibeplus-fancy-error {
    background: linear-gradient(90deg, #ff3cac 0%, #784ba0 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px #ff3cac44, 0 1.5px 8px #23234b88;
    padding: 14px 24px;
    margin: 0 auto;
    text-align: center;
    max-width: 340px;
    animation: vibeplus-fancy-error-in 0.3s cubic-bezier(.68,-0.55,.27,1.55);
    opacity: 0.97;
    pointer-events: none;
    z-index: 10001;
}
.vibeplus-fancy-error-animate {
    animation: vibeplus-fancy-error-in 0.3s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes vibeplus-fancy-error-in {
    0% { opacity: 0; transform: translateY(18px) scale(0.95);}
    100% { opacity: 0.97; transform: translateY(0) scale(1);}
}
@media (max-width: 600px) {
    .vibeplus-glass {
        padding: 12px 2vw 12px 2vw;
        min-width: 0;
        width: 98vw;
        border-radius: 12px;
    }
    .vibeplus-title,
    .vibeplus-3d {
        font-size: 1rem;
    }
    .vibeplus-subtitle {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    .vibeplus-feature {
        font-size: 0.8rem;
        padding: 6px 0;
    }
    .vibeplus-price-block {
        margin-bottom: 10px; /* изменено: линия теперь сверху */
        margin-top: 0;
    }
    .vibeplus-price {
        font-size: 1.1rem;
        padding: 0 0.05em;
    }
    .vibeplus-currency {
        font-size: 0.95rem;
        padding-bottom: 1px;
    }
    .vibeplus-per {
        font-size: 0.7rem;
        padding-bottom: 0;
    }
    .vibeplus-price-block::after {
        width: 60%;
        margin-bottom: 4px; /* изменено: отступ вниз вместо вверх */
    }
}
@media (max-width: 768px) {
    #vibeplus-motd-backdrop {
        position: fixed !important;
        z-index: 20000 !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: radial-gradient(ellipse at top right, #ff3cac33 0%, #23234b 100%);
        backdrop-filter: blur(2px);
    }
    #vibeplus-error-container {
        position: fixed !important;
        z-index: 20001 !important;
        left: 0 !important;
        width: 100vw !important;
        pointer-events: none !important;
    }
    .vibeplus-fancy-error {
        max-width: 96vw !important;
        font-size: 1em !important;
        padding: 10px 8vw !important;
        border-radius: 12px !important;
    }
}
