/* ===== DESKTOP DEFAULT ===== */
.astro-notify {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    border-radius: 18px;
    padding: 16px 18px;
    display: flex;
    gap: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    max-width: 340px;
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: all 0.45s ease;
    z-index: 2147483647;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
}

.astro-notify.show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.astro-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.astro-title {
    font-weight: 600;
    font-size: 14px;
    color: #111;
}

.astro-text {
    font-size: 13px;
    color: #444;
    margin-top: 2px;
}

.astro-time {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}

/* ===== MOBILE BOTTOM BAR (2 LINES) ===== */
@media (max-width: 768px) {

    .astro-notify {
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 12px 12px;
        max-width: unset;
        border-radius: 14px;
        padding: 12px 14px;
        align-items: center;
        transform: translate3d(0, 100%, 0);
    }

    .astro-notify.show {
        transform: translate3d(0, 0, 0);
    }

    .astro-icon {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    /* Text container */
    .astro-notify > div:last-child {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    /* Line 1 */
    .astro-title {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .astro-text {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Line 2 (time only) */
    .astro-time {
        font-size: 11px;
        color: #888;
        margin-top: 2px;
        white-space: nowrap;
    }
}
