/* -----------------------------
   Announcement Toast Styling 
------------------------------ */
.announcement-toast {
    position: fixed;
    top: 90px;
    right: 20px;
    background: #1e1e1e;
    border: 1px solid #30363d;
    border-left: 4px solid #3fb950;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    padding: 16px 35px 16px 16px;
    z-index: 1001; 
    display: flex;
    align-items: center;
    max-width: 380px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.announcement-toast.hidden {
    transform: translateX(120%);
    opacity: 0;
}

.close-toast {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: #adbac7;
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    line-height: 1;
}

.close-toast:hover {
    color: #da3633;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    padding: 4px;
}

.toast-text {
    color: #adbac7;
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: left;
}

.toast-text strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.toast-link {
    color: #3fb950;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.toast-link:hover {
    color: #62f382;
    text-decoration: underline;
}

@media (max-width: 500px) {
    .announcement-toast {
        top: 20px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}