/* ОБЩИЕ СТИЛИ УВЕДОМЛЕНИЙ ДЛЯ ВСЕХ МОДУЛЕЙ */
#game-notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.game-notification {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(400px);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--brand-color, #007bff);
}

.dark-skin .game-notification {
    background: #2c2e33;
}

.game-notification.show {
    transform: translateX(0);
}

.game-notification.success {
    border-left-color: var(--brand-color, #28a745);
}

.game-notification.error {
    border-left-color: #dc3545;
}

.game-notification.warning {
    border-left-color: #ffc107;
}

.game-notification.info {
    border-left-color: var(--brand-color, #17a2b8);
}

.game-notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.game-notification-icon .fa {
    font-size: 20px;
    color: white;
}

.game-notification.success .game-notification-icon {
    background-color: var(--brand-color, #28a745);
}

.game-notification.error .game-notification-icon {
    background-color: #dc3545;
}

.game-notification.warning .game-notification-icon {
    background-color: #ffc107;
}

.game-notification.info .game-notification-icon {
    background-color: var(--brand-color, #17a2b8);
}

.game-notification-content {
    flex: 1;
}

.game-notification-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: #343a40;
}

.dark-skin .game-notification-title {
    color: #e9ecef;
}

.game-notification-message {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

.dark-skin .game-notification-message {
    color: #adb5bd;
}

.game-notification-close {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    flex-shrink: 0;
}

.game-notification-close:hover {
    color: #343a40;
}

.dark-skin .game-notification-close:hover {
    color: #f8f9fa;
}

@media (max-width: 768px) {
    #game-notifications {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .game-notification {
        max-width: none;
    }
}