/* BOTTOM NOTIFICATION */
.bottom-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.92);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 15px;
    line-height: 2;
    padding: 14px 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.7;
}

.bottom-notification.display-none {
    display: none;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.notification-content p {
    text-align: center;
}

.bottom-notification p {
    margin: 0;
    font-weight: 500;
}

.notification-link {
    color: #7cc6ff;
    text-decoration: underline;
    font-size: 14.5px;
}

.notification-link:hover {
    color: #ffffff;
}

.notification-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.9;
}

.notification-close:hover {
    opacity: 1;
    color: #ff7777;
}

/* Responsive */
@media (max-width: 768px) {
    .bottom-notification {
        flex-direction: column;
        text-align: center;
        padding: 12px 15px;
        font-size: 14px;
    }
    .notification-content {
        flex-direction: column;
        gap: 10px;
    }
}
