.game-notification {
    position: absolute;
    transform: translateX(-50%) translateY(-30px);
    left: 50%;
    top: 70px;
    padding: 16px 12px;
    background: linear-gradient(to bottom, rgba(26, 13, 10, 0.95), rgba(58, 44, 26, 0.8));
    color: #e0a84b;
    border: 1px solid #8b4513;
    font-family: "MedievalSharp", cursive;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    z-index: 100000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    min-width: 300px;
    max-width: 80%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    white-space: pre-line;
}

.game-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.game-notification.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px);
}

.game-notification.success {
    color: #4caf50;
}

.game-notification.error {
    color: #ff6b6b;
}

.game-notification.warning {
    color: #ff9800;
}
